Skip to content

Instantly share code, notes, and snippets.

@silppuri
Created May 17, 2013 06:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save silppuri/5597352 to your computer and use it in GitHub Desktop.
Save silppuri/5597352 to your computer and use it in GitHub Desktop.
I do this mistake too often...
#!/bin/sh
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
VAR=$(git grep --cached debugger)
# Check if contains 'debugger'
if [ ! -z "$VAR" ]
then
echo 'DUMB! You are about to commit line with debugger statement!'
exit 1
fi
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment