diff options
author | Benoit Sigoure <tsuna@lrde.epita.fr> | 2007-11-03 19:53:34 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-03 21:39:12 -0700 |
commit | aa807bc2663d69d6adb1d823231ba4b6d30d4860 (patch) | |
tree | a62e7bac08a5ab7d324cac0b8c36bfba0497e262 | |
parent | builtin-fetch: Add "-q" as a synonym for "--quiet" (diff) | |
download | tgif-aa807bc2663d69d6adb1d823231ba4b6d30d4860.tar.xz |
git-svn: sort the options in the --help message.
"git svn <cmd> --help" gave options in the order they were found in a
Perl hash, which meant "randomly" to humans.
Signed-off-by: Benoit Sigoure <tsuna@lrde.epita.fr>
Acked-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-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 22bb47b34d..4900f57f18 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -252,7 +252,7 @@ Usage: $0 <command> [options] [arguments]\n next if $cmd && $cmd ne $_; next if /^multi-/; # don't show deprecated commands print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n"; - foreach (keys %{$cmd{$_}->[2]}) { + foreach (sort keys %{$cmd{$_}->[2]}) { # mixed-case options are for .git/config only next if /[A-Z]/ && /^[a-z]+$/i; # prints out arguments as they should be passed: |