From: Pádraig Brady Date: Wed, 28 Oct 2015 10:56:56 +0000 (+0000) Subject: maint: allow 'all:' tag in commit summaries X-Git-Tag: v8.25~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f5e0453e17bd9db231d2fc7ba112821c428d0fc;p=thirdparty%2Fcoreutils.git maint: allow 'all:' tag in commit summaries To tag changes that are user visible and affect all (or many) commands. --- diff --git a/scripts/git-hooks/commit-msg b/scripts/git-hooks/commit-msg index 0e4dad6a89..8e79b6cfd7 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 - copy gnulib tests maint doc build scripts + all copy gnulib tests maint doc build scripts ); my $v_or = join '|', @valid; my $valid_regex = qr/^(?:$v_or)$/;