shortlog: match both "Author:" and "author" on stdin
commit5c3894c39d4095e6875376a6c05c6390b9a50754
authorJeff King <peff@peff.net>
Mon, 18 Jan 2016 20:02:40 +0000 (18 15:02 -0500)
committerJunio C Hamano <gitster@pobox.com>
Tue, 19 Jan 2016 17:53:00 +0000 (19 09:53 -0800)
treef99a644d7242a86427a5d9e5ccee2d751b1c4e44
parent754884255bb580df159e58defa81cdd30b5c430c
shortlog: match both "Author:" and "author" on stdin

The original git-shortlog could read both the normal "git
log" output as well as "git log --format=raw". However, when
it was converted to C by b8ec592 (Build in shortlog,
2006-10-22), the trailing colon became mandatory, and we no
longer matched the raw output.

Given the amount of intervening time without any bug
reports, it's probable that nobody cares. But it's
relatively easy to fix, and the end result is hopefully more
readable than the original.

Note that this no longer matches "author: ", which we did
before, but that has never been a format generated by git.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/shortlog.c
t/t4201-shortlog.sh