What Code Review Looks Like in GitHub
Last updated on 2023-02-13 | Edit this page
Commit changes: uploading snapshots when the code changes. The history of all changes are therefore saved and can be reverted.
![drawing](https://i.postimg.cc/MHm8X1zX/Screenshot-2022-02-10-at-16-35-50.png)
Branching: keep a version of the code separate while making experimental changes or keeping track of collaborative work. Can try out new functionality or edit in parallel without impacting the code base.
![drawing](https://i.postimg.cc/6p5v0Nb1/Screenshot-2022-02-10-at-18-52-47.png)
Pull Request: Bring the changes made on a branch over to the main code base. Can be used to request a code review (see Reviewers on the right panel)
![drawing](https://i.postimg.cc/5tgv5Rpm/Screenshot-2022-02-10-at-18-44-07.png)
Review: A pull request can be reviewed and commented on.
![drawing](https://i.postimg.cc/9XDbVyWQ/Screenshot-2022-02-10-at-19-11-58.png)