From: Nicolas Pitre Date: Tue, 2 Aug 2005 21:18:57 +0000 (-0400) Subject: [PATCH] list shortlog items in commit order X-Git-Tag: v0.99.4~64 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=72d7121cc00c890c2962a5b4bff06a2af6a15df5;p=git.git [PATCH] list shortlog items in commit order The current shortlog list is backward making it look odd. This reverses it so things appear more logically. [jc: Nico says that this restores the short-log behaviour from the BK days.] Signed-off-by: Nicolas Pitre Signed-off-by: Junio C Hamano --- diff --git a/git-shortlog b/git-shortlog index a147e7b4..107c895d 100755 --- a/git-shortlog +++ b/git-shortlog @@ -90,7 +90,7 @@ sub shortlog_output { # output author's 1-line summaries $obj = $map{$key}; - foreach $desc (@$obj) { + foreach $desc (reverse @$obj) { print " $desc\n"; $n_output++; }