diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-02-20 10:57:25 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-20 13:32:40 -0800 |
commit | a18b63276281708143be7a7828bf106c88a7b307 (patch) | |
tree | bc26ac6c58346a0ba9a18d806dbf1015b458f0cb /contrib | |
parent | 73be17f0b387b2741646498a9a80da677a9e0c7a (diff) | |
download | git-a18b63276281708143be7a7828bf106c88a7b307.tar.gz git-a18b63276281708143be7a7828bf106c88a7b307.tar.xz |
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 <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/git-svn/git-svn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/git-svn/git-svn b/contrib/git-svn/git-svn index 71a8b3b2e..1a8f40edd 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)"], |