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 <robfitz@273k.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
aaca9675a4
commit
0ff5ec70c7
@ -1139,8 +1139,9 @@ sub git_get_last_activity {
|
|||||||
|
|
||||||
$git_dir = "$projectroot/$path";
|
$git_dir = "$projectroot/$path";
|
||||||
open($fd, "-|", git_cmd(), 'for-each-ref',
|
open($fd, "-|", git_cmd(), 'for-each-ref',
|
||||||
'--format=%(refname) %(committer)',
|
'--format=%(committer)',
|
||||||
'--sort=-committerdate',
|
'--sort=-committerdate',
|
||||||
|
'--count=1',
|
||||||
'refs/heads') or return;
|
'refs/heads') or return;
|
||||||
my $most_recent = <$fd>;
|
my $most_recent = <$fd>;
|
||||||
close $fd or return;
|
close $fd or return;
|
||||||
|
Loading…
Reference in New Issue
Block a user