Contributor Workflow
The codebase is maintained using the âcontributor workflowâ where everyone without exception contributes patch proposals using âpull requestsâ. This facilitates social contribution, easy testing and peer review. To contribute a patch, the workflow is as follows:- Fork repository
- Create topic branch
- Commit patches
refs #1234, or fixes #4321. Using the fixes or closes keywords will cause the corresponding issue to be closed when the pull request is merged.
Please refer to the Git manual for more information about Git.
- Push changes to your fork
- Create pull request
Squashing Commits
If your pull request is accepted for merging, you may be asked by a maintainer to squash and or rebase your commits before it will be merged. The basic squashing workflow is shown below.Pull Request Philosophy
Patchsets should always be focused. For example, a pull request could add a feature, fix a bug, or refactor code; but not a mixture. Please also avoid super pull requests which attempt to do too much, are overly large, or overly complex as this makes review difficult.Features
When adding a new feature, thought must be given to the long term technical debt and maintenance that feature may require after inclusion. Before proposing a new feature that will require maintenance, please consider if you are willing to maintain it (including bug fixing). If features get orphaned with no maintainer in the future, they may be removed by the Repository Maintainer.Refactoring
Refactoring is a necessary part of any software projectâs evolution. The following guidelines cover refactoring pull requests for the project. There are three categories of refactoring, code only moves, code style fixes, code refactoring. In general refactoring pull requests should not mix these three kinds of activity in order to make refactoring pull requests easy to review and uncontroversial. In all cases, refactoring PRs must not change the behaviour of code within the pull request (bugs must be preserved as is). Project maintainers aim for a quick turnaround on refactoring pull requests, so where possible keep them short, uncomplex and easy to verify.âDecision Makingâ Process
The following applies to code changes to the BluChip project, and is not to be confused with overall BluChip Network Protocol consensus changes. Whether a pull request is merged into BluChip rests with the project merge maintainers and ultimately the project lead. Maintainers will take into consideration if a patch is in line with the general principles of the project; meets the minimum standards for inclusion; and will judge the general consensus of contributors. In general, all pull requests must:- have a clear use case, fix a demonstrable bug or serve the greater good of the project (for example refactoring for modularisation);
- be well peer reviewed;
- have unit tests and functional tests where appropriate;
- follow code style guidelines;
- not break the existing test suite;
- where bugs are fixed, where possible, there should be unit tests demonstrating the bug and also proving the fix. This helps prevent regression.
Peer Review
Anyone may participate in peer review which is expressed by comments in the pull request. Typically reviewers will review the code for obvious errors, as well as test out the patch set and opine on the technical merits of the patch. Project maintainers take into account the peer review when determining if there is consensus to merge a pull request (remember that discussions may have been spread out over github, mailing list and IRC discussions). The following language is used within pull-request comments:- ACK means âI have tested the code and I agree it should be mergedâ;
- NACK means âI disagree this should be mergedâ, and must be accompanied by sound technical justification. NACKs without accompanying reasoning may be disregarded;
- utACK means âI have not tested the code, but I have reviewed it and it looks OK, I agree it can be mergedâ;
- Concept ACK means âI agree in the general principle of this pull requestâ;
- Nit refers to trivial, often non-blocking issues.
