diff options
author | Peter Wu <peter@lekensteyn.nl> | 2015-07-09 17:11:33 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2015-07-23 15:03:44 +0200 |
commit | d24165bce2823c2f5dcb39b7b84c9aa00802a8ee (patch) | |
tree | a64e3c5e8a9a4ffcf427e9b1380bd1be021e80e4 /build-aux | |
parent | scd: Format change to specify "rsa2048" for KEY-ATTR. (diff) | |
download | gnupg2-d24165bce2823c2f5dcb39b7b84c9aa00802a8ee.tar.xz gnupg2-d24165bce2823c2f5dcb39b7b84c9aa00802a8ee.zip |
build: ignore scissor line for the commit-msg hook
* build-aux/git-hooks/commit-msg: Stop processing more lines when the
scissor line is encountered.
--
This allows the command `git commit -v` to work even if the code is
longer than 72 characters. Note that comments are already ignored by the
previous line.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/git-hooks/commit-msg | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build-aux/git-hooks/commit-msg b/build-aux/git-hooks/commit-msg index 5a697c7a6..3ca918b27 100755 --- a/build-aux/git-hooks/commit-msg +++ b/build-aux/git-hooks/commit-msg @@ -86,11 +86,17 @@ sub check_msg($$) 2 <= @line && length $line[1] and return 'second line must be empty'; + # See git-commit(1), this is the --cleanup=scissors option. Everything + # after and including this line gets ignored. + my $marker = '# ------------------------ >8 ------------------------'; + # Limit line length to allow for the ChangeLog's leading TAB. foreach my $line (@line) { 72 < length $line && $line =~ /^[^#]/ and return 'line longer than 72 characters'; + + last if $line eq $marker; } return ''; |