Once the code is merged into StoneDB
, your name will be stored in system.contributors
table forever!
Check if git
has been installed. If not, install it first.
- Issue report: Open a regular StoneDB issue to bind your pull request.
For more details about creating github issue concepts, see: create an github issue - Fork StoneDB repo to your own account.
- After add you own code, add unit test
- Do make mtr test
- After all test passed, use clang-format to formate your code according to google c++ styleguide
- Submit a Draft Pull Requests and write your PR description
For more details about pr concepts, see creating-a-pull-request-from-a-fork
For more detail about draft pr concepts, see draft-pull-request - After all CI tests are passed, change the status to “Ready for review”.
After the pr is reviewed, you may get a "LGTM", we'll merge your PR as soon as you've addressed all review feedback!
CR Jargon:
These are the acronyms you'll frequently encounter during code reviews.
-
CR, "code review"
-
PR, "pull request"
-
PTAL, "please take another look"
-
RFAL, "ready for another look"
-
LGTM, "looks good to me"
-
TF[YT]R, "thanks for your/the review"
Format: <type>(<scope>): description (#issue_id)
e.g.:
fix(util): fix sth..... (#3306)
[summary]
1 ...
2 ...
More types:
feat
: (new feature for the user)fix
: (bug fix for the user)docs
: (changes to the documentation)style
: (formatting, missing semi colons, etc; no production code change)refactor
: (refactoring production code, eg. renaming a variable)test
: (adding missing tests, refactoring tests; no production code change)chore
: (updating grunt tasks etc; no production code change)