Skip to content

Instantly share code, notes, and snippets.

@ananelson
Created November 1, 2013 20:54
Show Gist options
  • Save ananelson/7271792 to your computer and use it in GitHub Desktop.
Save ananelson/7271792 to your computer and use it in GitHub Desktop.
#!/bin/sh
#
# The hook should exit with non-zero status after issuing an appropriate
# message if it wants to stop the commit.
if git diff --cached | grep "NOCOMMIT"
then
echo "NOCOMMIT found in code, cancelling commit."
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment