Skip to content

Instantly share code, notes, and snippets.

@lbjay
Forked from azu/README.md
Last active August 9, 2017 13:55
Show Gist options
  • Save lbjay/311e1f58e0724c1ac5463557dbd29efd to your computer and use it in GitHub Desktop.
Save lbjay/311e1f58e0724c1ac5463557dbd29efd to your computer and use it in GitHub Desktop.

Full code review on GitHub script

Reference: How to conduct a full code review on GitHub

Usage

run in repogitory with optional branch name prefix

./review.sh [prefix-]

open GitHub and Pull Request

Pull Request

Compare empty ... review

review

#!/bin/bash
prefix="$1"
currentBranchName=$(git rev-parse --abbrev-ref HEAD)
# review branch
git checkout --orphan "${prefix}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 "${prefix}empty"
# merge review point
git merge "${currentBranchName}" # merge with prev branch(= probably master)
# push to origin
git push origin "${prefix}review"
git push origin "${prefix}empty"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment