diff options
Diffstat (limited to '')
-rwxr-xr-x | .githooks/post-commit | 9 | ||||
-rwxr-xr-x | dm | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/.githooks/post-commit b/.githooks/post-commit new file mode 100755 index 0000000..5752673 --- /dev/null +++ b/.githooks/post-commit @@ -0,0 +1,9 @@ +#!/bin/sh + +if [ $(git diff -G PASS -i HEAD~1..HEAD | wc -l) != 0 ]; then + echo "#######################################################" + echo "# You committed something containing the string PASS. #" + echo "# Please make sure this is safe before pushing. #" + echo "#######################################################" + git diff -G PASS -i HEAD~1..HEAD +fi @@ -2,6 +2,8 @@ set -e +git config core.hooksPath .githooks + if [ ! -f SUBSTS.local ]; then echo "Please create the file SUBSTS.local first." exit 1; |