diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-10-28 10:56:56 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-10-29 00:18:13 +0000 |
commit | 3f5e0453e17bd9db231d2fc7ba112821c428d0fc (patch) | |
tree | 318f84baebcacd4a14e1e2d7a370d610de9a11cf /scripts/git-hooks/commit-msg | |
parent | b6db36b07ff60265a1a8b6661b1aac98f7a5e307 (diff) | |
download | coreutils-3f5e0453e17bd9db231d2fc7ba112821c428d0fc.tar.xz |
maint: allow 'all:' tag in commit summaries
To tag changes that are user visible
and affect all (or many) commands.
Diffstat (limited to 'scripts/git-hooks/commit-msg')
-rwxr-xr-x | scripts/git-hooks/commit-msg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/git-hooks/commit-msg b/scripts/git-hooks/commit-msg index 0e4dad6a8..8e79b6cfd 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)$/; |