Skip to content

Instantly share code, notes, and snippets.

@hjeffrey
Forked from cleichner/pre-commit
Created March 28, 2016 10:15
Show Gist options
  • Save hjeffrey/98133dd1193c7be7dd16 to your computer and use it in GitHub Desktop.
Save hjeffrey/98133dd1193c7be7dd16 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment