diff options
Diffstat (limited to 'git-shortlog')
-rwxr-xr-x | git-shortlog | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-shortlog b/git-shortlog index a147e7b47..107c895df 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++; } |