Skip to content

Instantly share code, notes, and snippets.

@praetoriansentry
Forked from azu/README.md
Created September 26, 2019 18:42
Show Gist options
  • Save praetoriansentry/b384b51f3809d11b7afad70c5aa9acbf to your computer and use it in GitHub Desktop.
Save praetoriansentry/b384b51f3809d11b7afad70c5aa9acbf to your computer and use it in GitHub Desktop.
#!/bin/bash
currentBranchName=$(git rev-parse --abbrev-ref HEAD)
# review branch
git checkout --orphan review
## remove under the git
git ls-files | xargs git rm --cached
## remove files
git clean -fxd
# create start point
git commit --allow-empty -m "Start of the review"
# create empty branch
git branch empty
# merge review point
git merge "${currentBranchName}" # merge with prev branch(= probably master)
# push to origin
git push origin review
git push origin empty
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment