Petr Baudis <pasky@xxxxxxx> writes: > diff --git a/git-remote.perl b/git-remote.perl > index 01cf480..8ce8418 100755 > --- a/git-remote.perl > +++ b/git-remote.perl > @@ -128,10 +128,7 @@ sub update_ls_remote { > return if (($harder == 0) || > (($harder == 1) && exists $info->{'LS_REMOTE'})); > > - my @ref = map { > - s|^[0-9a-f]{40}\s+refs/heads/||; > - $_; > - } $git->command(qw(ls-remote --heads), $info->{'URL'}); > + my @ref = keys %{$git->remote_refs($info->{'URL'}, [ 'heads' ])}; > $info->{'LS_REMOTE'} = \@ref; > } IIRC, ls-remote returns refs sorted and this function returns them as it receives. Doesn't this change make @ref randomly ordered? - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html