Created
February 1, 2012 21:40
-
-
Save sskirby/1719641 to your computer and use it in GitHub Desktop.
Dev review script for the CPI project
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
| #!/usr/bin/zsh | |
| # Outputs a github link that you can click on to see the diff | |
| if [[ -n $1 ]]; then | |
| git log --pretty=oneline | egrep "Merge branch '${1}.*'.*" | awk '{print "https://github.com/nulogy/cpi/commit/" $1}' | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment