Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
git-rebase -i: clean-up error check codepath.
[gitweb.git]
/
templates
/
hooks--pre-commit
diff --git
a/templates/hooks--pre-commit
b/templates/hooks--pre-commit
index 8b057be30411e3f0074599778666c1254d82329e..7092bae26342d273f28d52ac330c270a22067f65 100644
(file)
--- a/
templates/hooks--pre-commit
+++ b/
templates/hooks--pre-commit
@@
-58,7
+58,7
@@
perl -e '
if (/\s$/) {
bad_line("trailing whitespace", $_);
}
- if (/^\s*
/) {
+ if (/^\s*
\t
/) {
bad_line("indent SP followed by a TAB", $_);
}
if (/^(?:[<>=]){7}/) {