diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-08-11 22:27:06 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-08-11 22:27:06 +0200 |
commit | 6d2b8a390c2519bf25cd73184c7c6e8baec4208a (patch) | |
tree | 9141891327e723ce2fbb7707317354b35e78f0fd /contrib | |
parent | Merge branch 'dl/credential-cache-socket-in-xdg-cache' (diff) | |
parent | git-contacts: also recognise "Reported-by:" (diff) | |
download | git-6d2b8a390c2519bf25cd73184c7c6e8baec4208a.tar.xz git-6d2b8a390c2519bf25cd73184c7c6e8baec4208a.zip |
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:"
Diffstat (limited to 'contrib')
-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 dbe2abf277..85ad732fc0 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 { |