Skip to content

Instantly share code, notes, and snippets.

@earonesty
Created March 24, 2015 14:01
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 earonesty/8b9af0810fcd7efc13ce to your computer and use it in GitHub Desktop.
Save earonesty/8b9af0810fcd7efc13ce to your computer and use it in GitHub Desktop.
pat="$(git config hooks.nocommitregex)"
if ( git diff | perl -ne "\$f=\$1 if m{^--- a/(.*)}; print \"--- \$f\n\$_\" if /$pat/" | grep . ); then
echo "Error: remove lines above before committing"
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment