This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # create empty base commit that will be the reference for our code review | |
| git checkout --orphan base | |
| git rm -r --cached . | |
| git clean -fxd | |
| git commit --allow-empty -m "Start of the review" | |
| # create and checkout review branch that will include the latest code that should be reviewed | |
| git checkout -b review | |
| # merge main branch into that new review branch |
OlderNewer