author | Junio C Hamano <gitster@pobox.com> | |
Wed, 6 May 2009 05:51:49 +0000 (22:51 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 6 May 2009 05:51:49 +0000 (22:51 -0700) |
* rj/maint-1.6.0-svn-parse-fix:
git-svn: fix a sloppy Getopt::Long usage
git-svn: fix a sloppy Getopt::Long usage
1 | 2 | |||
---|---|---|---|---|
git-svn.perl | patch | | diff1 | | diff2 | | blob | history |
diff --cc git-svn.perl
index 931d1a37bcf7c905f9968b7ce58e0dd329007f3d,8b9ad38f85653e5a7f03eb623610893818c92ddb..3b524207ffef124ca62c82af33396fe87723be6c
--- 1/git-svn.perl
--- 2/git-svn.perl
+++ b/git-svn.perl
'revision|r=i' => \$_revision,
'no-rebase' => \$_no_rebase,
%cmt_opts, %fc_opts } ],
+ branch => [ \&cmd_branch,
+ 'Create a branch in the SVN repository',
+ { 'message|m=s' => \$_message,
+ 'dry-run|n' => \$_dry_run,
+ 'tag|t' => \$_tag } ],
+ tag => [ sub { $_tag = 1; cmd_branch(@_) },
+ 'Create a tag in the SVN repository',
+ { 'message|m=s' => \$_message,
+ '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