Thank you for considering contributing to the seq-here project! Here's a simple step-by-step guide:
- Fork this repository - Click the "Fork" button at the top right of GitHub
- Clone your fork -
git clone https://github.com/your-username/seq-here.git - Switch to the dev branch -
git checkout dev(all development must be based on the dev branch) - Create a feature branch -
git checkout -b feature/your-feature-name - Make changes - Write code and commit your changes
- Push to your repository -
git push origin feature/your-feature-name - Create a Pull Request - Make sure your target is the
devbranch of the original repository
- Always develop based on the dev branch, do not submit PRs directly to the main branch
- Maintain consistent code style
- Add tests and documentation when necessary
- Clearly describe your changes and purpose in your PR description
Maintainers will review your PR and may suggest modifications. Once approved, your changes will be merged into the dev branch and incorporated into the main branch during the next release.
Thank you for your contribution!