Created
February 27, 2013 22:23
-
-
Save willkg/5052392 to your computer and use it in GitHub Desktop.
shows a log --oneline of the sha in production and head
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
#!/bin/bash | |
set -o errexit | |
USAGE="" | |
. git-sh-setup | |
INPROD=`curl -s "https://support.mozilla.org/media/revision.txt"` | |
echo "You are about to push:" | |
git log --oneline ${INPROD}..HEAD | |
echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment