From: Eric Wong Date: Mon, 20 Feb 2006 18:57:25 +0000 (-0800) Subject: git-svn: fix a typo in defining the --no-stop-on-copy option X-Git-Tag: v1.3.0-rc1~188 X-Git-Url: https://git.octo.it/?p=git.git;a=commitdiff_plain;h=a18b63276281708143be7a7828bf106c88a7b307 git-svn: fix a typo in defining the --no-stop-on-copy option Just a typo, I doubt anybody would use (and I highly recommend not using) this option anyways. But you never know... Signed-off-by: Eric Wong Signed-off-by: Junio C Hamano --- diff --git a/contrib/git-svn/git-svn b/contrib/git-svn/git-svn index 71a8b3b2..1a8f40ed 100755 --- a/contrib/git-svn/git-svn +++ b/contrib/git-svn/git-svn @@ -38,7 +38,7 @@ GetOptions( 'revision|r=s' => \$_revision, 'edit|e' => \$_edit, 'rmdir' => \$_rmdir, 'help|H|h' => \$_help, - 'no-stop-copy' => \$_no_stop_copy ); + 'no-stop-on-copy' => \$_no_stop_copy ); my %cmd = ( fetch => [ \&fetch, "Download new revisions from SVN" ], init => [ \&init, "Initialize and fetch (import)"],