Git pre-commit hook that does not allow committing a change containing DONOTCOMMIT text
$ cat .git/hooks/pre-commit | |
#!/bin/bash | |
FOUND=$(git diff-index --cached -U0 HEAD -- | grep DONOTCOMMIT | wc -l) | |
if [[ $FOUND -gt 0 ]]; then | |
echo "pre-commit hook: DONOTCOMMIT detected, commit not allowed" | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment