Created
June 10, 2013 13:31
-
-
Save bytespider/5748723 to your computer and use it in GitHub Desktop.
Useful git hooks
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
# stash unstaged changes so they are not included in the tests | |
git stash -q --keep-index | |
npm test | |
RESULT=$? | |
# put the unstaged changes back | |
git stash pop -q | |
[ $RESULT -ne 0 ] && exit 1 | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment