diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-05-05 22:51:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-05-05 22:51:49 -0700 |
commit | 54e0e6edfa60f84b582112804365e207e70f44a6 (patch) | |
tree | 37c1a5b79998b3bc70a0bb70874abaa062181090 | |
parent | Merge branch 'maint-1.6.0' into maint (diff) | |
parent | git-svn: fix a sloppy Getopt::Long usage (diff) | |
download | tgif-54e0e6edfa60f84b582112804365e207e70f44a6.tar.xz |
Merge branch 'rj/maint-1.6.0-svn-parse-fix' into maint
* rj/maint-1.6.0-svn-parse-fix:
git-svn: fix a sloppy Getopt::Long usage
-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 931d1a37bc..3b524207ff 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -144,7 +144,7 @@ my %cmd = ( 'dry-run|n' => \$_dry_run } ], 'set-tree' => [ \&cmd_set_tree, "Set an SVN repository to a git tree-ish", - { 'stdin|' => \$_stdin, %cmt_opts, %fc_opts, } ], + { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ], 'create-ignore' => [ \&cmd_create_ignore, 'Create a .gitignore per svn:ignore', { 'revision|r=i' => \$_revision |