Review Process - GSW-2021

Before starting work on a GSW-2021 task it must be assigned a reviewer by the team. That reviewer is responsible for double checking all of the software changes and making sure it does not introduce any non-intended effects.


Most tasks will be done in a separate branch, create one using the following git command from within the GSW-2021 repository:

git branch [branch name]

Switch to the branch using:

git checkout [branch name]

Or optionally combine the previous two commands with:

git checkout -b [branch name]


Whatever you substitute for 'branch name' should be listed in the code review table.


Once you are ready to merge in your updates, contact the reviewer and request that they review your work. Once they pass your review the change is okay to be merged to the master branch.