summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-02-20 18:57:25 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-02-20 21:32:40 (GMT)
commita18b63276281708143be7a7828bf106c88a7b307 (patch)
treebc26ac6c58346a0ba9a18d806dbf1015b458f0cb /contrib
parent73be17f0b387b2741646498a9a80da677a9e0c7a (diff)
downloadgit-a18b63276281708143be7a7828bf106c88a7b307.zip
git-a18b63276281708143be7a7828bf106c88a7b307.tar.gz
git-a18b63276281708143be7a7828bf106c88a7b307.tar.bz2
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-xcontrib/git-svn/git-svn2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/git-svn/git-svn b/contrib/git-svn/git-svn
index 71a8b3b..1a8f40e 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)"],