Skip to content

Instantly share code, notes, and snippets.

@davetorbeck
Forked from arturadib/pre-commit
Created November 10, 2018 00:37
Show Gist options
  • Save davetorbeck/058b0a09e6a2eb339bb0ffab86d732fb to your computer and use it in GitHub Desktop.
Save davetorbeck/058b0a09e6a2eb339bb0ffab86d732fb to your computer and use it in GitHub Desktop.
Pre-commit hook to prevent debug code from being committed
#
# Paste this script in your .git/hooks/pre-commit file (create one if it doesn't exist yet)
# To prevent debug code from being accidentally committed, simply add a comment near your
# debug code containing the keyword !nocommit and this script will abort the commit.
#
if git commit -v --dry-run | grep '!nocommit' >/dev/null 2>&1
then
echo "Trying to commit non-committable code."
echo "Remove the !nocommit string and try again."
exit 1
else
exit 0
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment