Skip to content

Instantly share code, notes, and snippets.

@leesmith
Created May 20, 2013 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save leesmith/5613364 to your computer and use it in GitHub Desktop.
Save leesmith/5613364 to your computer and use it in GitHub Desktop.
Git pre-commit hook to search for bad things in a commit
#!/bin/sh
if git-rev-parse --verify HEAD >/dev/null 2>&1; then
against=HEAD
else
# run against initial commit
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
for FILE in `git diff-index --check --name-status $against -- | cut -c3-` ; do
# Check if the file contains 'debugger'
if [ "grep 'debugger save_and_open_page binding.pry' $FILE" ]
then
echo $FILE ' contains debugger!'
exit 1
fi
done
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment