Skip to content

Instantly share code, notes, and snippets.

@sibljon
Forked from cleichner/pre-commit
Created July 17, 2013 14:57
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 sibljon/6021338 to your computer and use it in GitHub Desktop.
Save sibljon/6021338 to your computer and use it in GitHub Desktop.
#!/bin/sh
# name this .git/hooks/pre-commit
# chmod +x .git/hooks/pre-commit
# enjoy
# so it will work on empty repos
if git-rev-parse --verify HEAD >/dev/null 2>&1; then
against=HEAD
else
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
for FILE in `git diff-index --name-status $against -- | cut -c3-` ; do
if [ `grep 'NSLog' $FILE` ]
then
echo $FILE ' has an NSLog in it on line' `grep -n NSLog $FILE | head -n1 | cut -d: -f1`
echo "Use git commit --no-verify to ignore this"
exit 1
fi
done
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment