From: Robert Fitzsimons Date: Fri, 22 Dec 2006 19:38:13 +0000 (+0000) Subject: gitweb: optimize git_get_last_activity. X-Git-Tag: v1.5.0-rc0~26 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0ff5ec70c7d4fb5f176da5e05897c316fda82584;p=git.git gitweb: optimize git_get_last_activity. Only return one line of output and we don't need the refname value. Signed-off-by: Robert Fitzsimons Signed-off-by: Junio C Hamano --- diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 80c04b88d..01e3a8ada 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1139,8 +1139,9 @@ sub git_get_last_activity { $git_dir = "$projectroot/$path"; open($fd, "-|", git_cmd(), 'for-each-ref', - '--format=%(refname) %(committer)', + '--format=%(committer)', '--sort=-committerdate', + '--count=1', 'refs/heads') or return; my $most_recent = <$fd>; close $fd or return;