-
-
Save edgar/5986581 to your computer and use it in GitHub Desktop.
Git: Pre-commit git hook that prevents commits with undesired words, usually debugging statements #git #hook #pre-commit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This script verifies if a list of "undesired" words are presented in the files you are intended to commit such console | |
# output, debugging information or keys/tokens/passwords | |
# Based on the git hook created by Mark Story | |
# http://mark-story.com/posts/view/using-git-commit-hooks-to-prevent-stupid-mistakes | |
# Instructions: | |
# Put this file into your .git/hooks folder and set as executable (chmod +x pre-commit) | |
# If you want to skip the hook just add the --no-verify: git commit --no-verify | |
# --------------------------------------------- | |
#!/bin/sh | |
# Modify this | |
# LIST='list\|of\|words\|splitted\|by\|slash\|and\|pipe' | |
LIST="puts\|debugger\|binding.pry\|alert(\|console.log(" | |
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 --cached $against -- | cut -c3-` ; do | |
# Check if the file contains one of the words in LIST | |
if grep -w $LIST $FILE; then | |
echo $FILE." has one of the word you don't want to commit. Please remove it" | |
exit 1 | |
fi | |
done | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment