Last active
September 16, 2020 22:57
-
-
Save wacko/62560b45c1d191859d6b to your computer and use it in GitHub Desktop.
Git hook to avoid commit debug lines (binding.pry console.log debugger...)
This file contains 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
#!/usr/bin/env ruby | |
# Validates that you don't commit forbidden keywords to the repo | |
# You can skip this checking with 'git commit --no-verify' | |
exit 0 if ARGV.include?('--no-verify') | |
# Update this list with your own forbidden keywords | |
KEYWORDS = %w(binding.pry console.log debugger) | |
def red(text) "\033[31m#{text}\033[0m"; end | |
def yellow(text) "\033[33m#{text}\033[0m"; end | |
# list all the files staged for commit | |
files_changed = %x(git diff --cached --name-only --).split | |
# search files for keywords | |
%x(git grep -q -E "#{KEYWORDS.join('|')}" #{files_changed.join(' ')}) | |
if $?.exitstatus.zero? | |
puts "# Check following lines:" | |
files_changed.each do |file| | |
KEYWORDS.each do |keyword| | |
%x(git grep -q #{keyword} #{file}) | |
if $?.exitstatus.zero? | |
line = %x(git grep -n #{keyword} #{file} | awk -F ":" '{print $2}').split.join(', ') | |
puts "#\t#{red(file)}:#{line} contains #{yellow keyword}." | |
end | |
end | |
end | |
puts "Use 'git commit --no-verify' to skip this validation" | |
exit 1 | |
end |
Thank you.
I have found this very useful — thank you!
I just ran into an issue with a merge conflict though... since I believe git merge automatically calls git commit, I found myself in a bit of a Catch-22.
If I git merge --continue, I get the error
(use "git commit" to conclude merge)
If I git commit, I get the error message from the hook.
I had to just temporarily turn off the hook.
Any thoughts on how to handle this?
Any thoughts on how to handle this?
You could check if merge head exists by adding exit 0 if File.file?('./.git/MERGE_HEAD')
to the top of the script
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍
thank you so much