]> git.eshelyaron.com Git - emacs.git/commitdiff
* build-aux/git-hooks/pre-commit: Add whitespace comment.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Dec 2016 22:54:30 +0000 (14:54 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Dec 2016 22:55:59 +0000 (14:55 -0800)
build-aux/git-hooks/pre-commit

index 5a512442b18682e3650f46405d140b935e1eec1d..3709784fd13c68113a38ef081eaf0daace9fe4df 100755 (executable)
@@ -45,4 +45,12 @@ for new_name in `$git_diff HEAD`; do
   esac
 done
 
+# The '--check' option of git diff-index makes Git complain if changes
+# introduce whitespace errors.  This can be a pain when editing test
+# files that deliberately contain lines with trailing whitespace.
+# To work around the problem you can run a command like 'git config
+# core.whitespace -trailing-space'.  It may be better to revamp the
+# tests so that trailing spaces are generated on the fly rather than
+# being committed as source.
+
 exec git diff-index --check --cached HEAD --