Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Latest commit

 

History

History
56 lines (32 loc) · 1.68 KB

CONTRIBUTION.md

File metadata and controls

56 lines (32 loc) · 1.68 KB

Contribution

Code guidelines

Feature request

  1. Open issue with full feature description

  2. Wait for response from core team

Development

  1. Open an issue

  2. Create new branch and code there

  3. Commit your work using commit message template

  4. Be sure that you are not behind the master, if so, rebase your branch

  5. Make a pull request to master branch with meaningful description and sign the CLA which is part of the PR checks

  6. Wait for review

  7. Apply / argue the code review comments

  8. Clean up the comment history if needed

  9. Push the changes again

  10. Repeat steps 4-10 until convergence

Side note: DO NOT USE git merge master or git pull master to align your branch with master, use git rebase master for it!