diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-12-28 01:16:22 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-28 01:39:47 -0800 |
commit | 4a4d94b29b4546e15e6f25f8739663562d4f64a5 (patch) | |
tree | f511f377919a264ec8cecf11cb0b3a065cbdf2f8 /git-svn.perl | |
parent | 2c5c1d5300e1f5f14b06b8eae77b628626d32045 (diff) | |
download | git-4a4d94b29b4546e15e6f25f8739663562d4f64a5.tar.gz |
git-svn: sort multi-init output
This looks a bit more pleasant for users.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-x | git-svn.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl index 74a3424b76..b28c5bbc72 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -2481,7 +2481,7 @@ sub libsvn_ls_fullurl { my $pool = SVN::Pool->new; my $r = defined $_revision ? $_revision : $ra->get_latest_revnum; my ($dirent, undef, undef) = $ra->get_dir('', $r, $pool); - foreach my $d (keys %$dirent) { + foreach my $d (sort keys %$dirent) { if ($dirent->{$d}->kind == $SVN::Node::dir) { push @ret, "$d/"; # add '/' for compat with cli svn } |