diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-08-11 13:27:06 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-08-11 13:27:06 -0700 |
commit | 6d2b8a390c2519bf25cd73184c7c6e8baec4208a (patch) | |
tree | 9141891327e723ce2fbb7707317354b35e78f0fd | |
parent | 838eaa9a225a30dd1297d354e8720560a36b7e64 (diff) | |
parent | 09ac6737887e26dd2b1f078946400c012955f081 (diff) | |
download | git-6d2b8a390c2519bf25cd73184c7c6e8baec4208a.tar.gz git-6d2b8a390c2519bf25cd73184c7c6e8baec4208a.tar.xz |
Merge branch 'eb/contacts-reported-by'
"git contacts" (in contrib/) now lists the address on the
"Reported-by:" trailer to its output, in addition to those on
S-o-b: and other trailers, to make it easier to notify (and thank)
the original bug reporter.
* eb/contacts-reported-by:
git-contacts: also recognise "Reported-by:"
-rwxr-xr-x | contrib/contacts/git-contacts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/contacts/git-contacts b/contrib/contacts/git-contacts index dbe2abf27..85ad732fc 100755 --- a/contrib/contacts/git-contacts +++ b/contrib/contacts/git-contacts @@ -11,7 +11,7 @@ use IPC::Open2; my $since = '5-years-ago'; my $min_percent = 10; -my $labels_rx = qr/Signed-off-by|Reviewed-by|Acked-by|Cc/i; +my $labels_rx = qr/Signed-off-by|Reviewed-by|Acked-by|Cc|Reported-by/i; my %seen; sub format_contact { |