Contributions are much appreciated. The project follows the standard GitHub workflow.
- Fork the repository.
- Create a new branch based on the
develop
branch (git checkout -b your_branch develop
). - Do your modifications on that branch and commit your changes. Here's an
example of a good commit message:
[wip] Added Guo forcing scheme - Added Guo's getEqVelocityForcing method - Added Guo's getCollisionForcing method - Added Guo's getHydroVelocityForcing method - Added Guo option to the Create factory method in forcingScheme.h
- Push the changes to your fork (
git push origin your_branch
). - Open a pull request against
develop
.
- Indent using 4 spaces.
- No trailing white spaces at the end of lines and no more than a single newline at the end of source file.
- Standard library
#include
s go first then a blank line followed by Asynchronator's headers. - Use your judgement but try to stick to the style of the surrounding code (camelCase).