Skip to content

Instantly share code, notes, and snippets.

@saarmstrong
Forked from timsweb/pre-commit
Last active August 29, 2015 14:24
Show Gist options
  • Save saarmstrong/79567481aeacde9b664b to your computer and use it in GitHub Desktop.
Save saarmstrong/79567481aeacde9b664b to your computer and use it in GitHub Desktop.
#!/bin/sh
if git-rev-parse --verify HEAD >/dev/null 2>&1; then
against=HEAD
else
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
for FILE in `git diff --cached --name-only` ; do
# Check if the file contains 'debugger'
grep -qE '^[ \t]*xdebug_break()' $FILE
if [[ $? -eq 0 ]]
then
echo $FILE ' contains xdebug_break()! To commit retry with --no-verify'
exit 1
fi
done
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment