summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4b7581f)
raw | patch | inline | side by side (parent: 4b7581f)
author | Nicolas Pitre <nico@cam.org> | |
Tue, 2 Aug 2005 21:18:57 +0000 (17:18 -0400) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 3 Aug 2005 05:51:06 +0000 (22:51 -0700) |
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 <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
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 <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-shortlog | patch | blob | history |
diff --git a/git-shortlog b/git-shortlog
index a147e7b4741b1613a14da997a4bf7553366e4882..107c895df39a9a26ac5eb30f0d45d9e46dc4caaf 100755 (executable)
--- a/git-shortlog
+++ b/git-shortlog
# output author's 1-line summaries
$obj = $map{$key};
- foreach $desc (@$obj) {
+ foreach $desc (reverse @$obj) {
print " $desc\n";
$n_output++;
}