Thanks for your desire to contribute to this project.
- Hit 'fork' on Github, creating e.g.
yourname/OrthoEvolution
. - Clone your project:
git clone git@github.com:yourname/OrthoEvolution
. - Create a branch:
cd OrthoEvolution; git checkout -b foo-the-bars 1.3
.
- Change to the project repository on your machine:
cd OrthoEvolution
- Install in development mode:
pip install -e .
- Add your contributions
- Run tests and make sure they pass. (We use unittest.)
- Commit your changes:
git commit -m "Foo the bars"
- Push your commit to get it back up to your fork:
git push origin HEAD
- Visit Github, click handy "Pull request" button that it will make upon noticing your new branch.
- In the description field, write down issue number (if submitting code fixing an existing issue) or describe the issue + your fix (if submitting a wholly new bugfix).
- Hit 'submit'! And please be patient - we will get to you when we can.
Always make a new branch for your work, no matter how small. This makes it easy for others to take just that one set of changes from your repository, in case you have multiple unrelated changes floating around.
- A corollary: don't submit unrelated changes in the same branch/pull request! The maintainer shouldn't have to reject your awesome bugfix because the feature you put in with it needs more review.
Base your new branch off of the appropriate branch on the main repository:
Bug fixes should be based on the branch named after the oldest supported release line the bug affects.
- E.g. if a feature was introduced in 1.1, the latest release line is 1.3, and a bug is found in that feature - make your branch based on 1.1. The maintainer will then forward-port it to 1.3 and master.
- Bug fixes requiring large changes to the code or which have a chance of being otherwise disruptive, may need to base off of master instead. This is a judgement call -- ask the devs!
New features should branch off of the 'master' branch.
- Note that depending on how long it takes for the dev team to merge
your patch, the copy of
master
you worked off of may get out of date! If you find yourself 'bumping' a pull request that's been sidelined for a while, make sure you rebase or merge to latest master to ensure a speedier resolution.
- Note that depending on how long it takes for the dev team to merge
your patch, the copy of
- Follow the style you see used in the primary repository! Consistency with the rest of the project always trumps other considerations.
- Python projects usually follow the PEP-8 guidelines (though many have minor deviations depending on the lead maintainers' preferences.)
It's not! Patches without documentation will be returned to sender. By "documentation" we mean:
- Docstrings (for Python; or API-doc-friendly comments for other languages) must be created or updated for public API functions/methods/etc. (This step is optional for some bugfixes.)
- New features should ideally include updates to prose documentation, including useful example code snippets.
Any bugfix that doesn't include a test proving the existence of the bug being fixed, may be suspect. Ditto for new features that can't prove they actually work.
We've found that test-first development really helps make features better architected and identifies potential edge cases earlier instead of later. Writing tests before the implementation is strongly encouraged.
Thanks to https://contribution-guide-org.readthedocs.io/ for the general guide.