Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

creator: A person who wants some code to be merged with the master branch.
reviewer: Some person other than the creator of the pull request, who is responsible for reviewing the code.  If

If you are new to reviewing code, you may benefit from reading this [introductory blog article](https://10kloc.wordpress.com/2016/04/03/effective-code-reviews/).

...

The steps for reviewing the code are. 

  1. Any code that is to be merged with the master branch can be done so only after it has been properly code reviewed by a reviewer.
  2. The following are the combined responsibilities of the creator and reviewer:
    1. Correctness of the new code to be merged.
    2. Adherence to style guidelines.
    3. Design and code quality.
    4. Comments are clear and understandable, and use proper English spelling and grammar.
    5. Unit test coverage.
    6. Nothing breaks.
    7. Benchmarking results (The decision of whether to perform the benchmarking or not). The actual task of benchmarking should be done by the creator.
  3. The reviewer is the person who is responsible for merging the pull request with the master branch after all the requested changes have been addressed by the creator.
  4. The size of each new pull request should preferably be below 500 lines of code. This is not a hard limit since some pull requests would naturally exceed this limit. This guideline suggests that, if you think that your pull request is going to be large, try and break it down into smaller pull requests.
  5. Once a pull request is created and assigned to a reviewer, the reviewer should make sure that they give comments for the first review pass within 3 days from the day the pull request was first created. This applies to all the pull requests that satisfy the 500 lines of code limit as mentioned in point 1. If the reviewer thinks that it wouldn't be possible to get back within 3 days, then the reviewer should inform the creator of the pull request and, and at the creator's discretion they can assign the review to someone else or wait for the original reviewer. This applies to the subsequent review passes too.
  6. If a review comment specifies some personal style preference (something not mentioned in Google C++ style guide or the Quickstep style guide that builds on it) that the reviewer follows, then the creator can use their own judgement to decide what they want to do.

...