From 72d7121cc00c890c2962a5b4bff06a2af6a15df5 Mon Sep 17 00:00:00 2001 From: Nicolas Pitre Date: Tue, 2 Aug 2005 17:18:57 -0400 Subject: [PATCH] [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 --- git-shortlog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-shortlog b/git-shortlog index a147e7b474..107c895df3 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++; }