From: Pádraig Brady Date: Mon, 23 Nov 2015 11:10:31 +0000 (+0000) Subject: maint: allow 'sha*sum:' tag in commit summaries X-Git-Tag: v8.25~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=561f759b01cedda112d696071d205d26b9196d89;p=thirdparty%2Fcoreutils.git maint: allow 'sha*sum:' tag in commit summaries To support "md5sum,sha*sum:" Suggested by Bernhard Voelker. --- diff --git a/scripts/git-hooks/commit-msg b/scripts/git-hooks/commit-msg index 8e79b6cfd7..d860f0ba23 100755 --- a/scripts/git-hooks/commit-msg +++ b/scripts/git-hooks/commit-msg @@ -24,7 +24,7 @@ my @valid = qw( sum sync tac tail tee test timeout touch tr true truncate tsort tty uname unexpand uniq unlink uptime users vdir wc who whoami yes - all copy gnulib tests maint doc build scripts + all copy gnulib tests maint doc build scripts sha\*sum ); my $v_or = join '|', @valid; my $valid_regex = qr/^(?:$v_or)$/;