Skip to content

Instantly share code, notes, and snippets.

@ananelson
Created November 1, 2013 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ananelson/7270810 to your computer and use it in GitHub Desktop.
Save ananelson/7270810 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
else
echo "ok - no match found"
exit 0
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment