From 370ce3dc9ecbb50517f311d4eac71faac8e815a2 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Mon, 1 Aug 2011 18:30:04 +0200 Subject: [PATCH] Authors with most commits first --- git-chart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-chart b/git-chart index 0be1d86..3b8cbdf 100755 --- a/git-chart +++ b/git-chart @@ -208,7 +208,7 @@ sub gnuplot_chart($;$) { } my $authors = delete $dataset->{_authors}; - my @authors = sort { $authors->{$a} <=> $authors->{$b} } keys %$authors; + my @authors = sort { $authors->{$b} <=> $authors->{$a} } keys %$authors; $authors = join "\t", map { "\"$_\"" } @authors; my @keys = sort keys %$dataset; -- 2.32.0.93.g670b81a890