-
-
Save tarikulwebx/c609d0a87ad1b7ffbed80d64382bd2db to your computer and use it in GitHub Desktop.
Github Full Code Review Process
This file contains 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 branch. | |
git checkout --orphan review | |
git rm -rf . | |
git commit --allow-empty -m "Create empty branch" | |
git push --set-upstream origin review | |
# Create `project` branch from `master` current state. | |
git checkout -b project | |
git merge main --allow-unrelated-histories | |
git push --set-upstream origin project | |
# Open a Pull-Request on the Github repository from `project` to `review`. Then you can perform a full-code review. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment