Skip to content

Instantly share code, notes, and snippets.

@cleichner
Created June 13, 2012 22:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save cleichner/2926942 to your computer and use it in GitHub Desktop.
Save cleichner/2926942 to your computer and use it in GitHub Desktop.
Pre-commit hook to check for NSLog statements in iOS repos
#!/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
@ozgur
Copy link

ozgur commented Oct 28, 2014

There is no such command git-rev-parse, it should be git rev-parse.

@hjeffrey
Copy link

My mac book pro: if [grep 'NSLog' $FILE] change to if [[grep 'NSLog' $FILE]]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment