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 | |
# original jonasvp https://gist.github.com/858223 | |
# also worth noting | |
# https://github.com/lbolla/dotfiles/blob/master/githooks/pre-commit | |
# http://python.dzone.com/articles/tips-using-git-pre-commit-hook | |
# stash unstaged changes, keeps our working dir clean | |
git stash -q --keep-index | |
# keeps our messages |