diff options
author | Junio C Hamano <junkio@cox.net> | 2005-11-04 23:30:12 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-08 01:24:50 -0800 |
commit | f3ad062560bfd4a2983122de93d08f43ea66e7cf (patch) | |
tree | 7abe0614ad67867156c740c8f3ca390c2f15839b /git-svnimport.perl | |
parent | 01d4f0e7758f0fa837eec18a901a668f816cfc5f (diff) | |
download | git-f3ad062560bfd4a2983122de93d08f43ea66e7cf.tar.gz |
Fix a couple of obvious and insignificant typo.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-svnimport.perl')
-rwxr-xr-x | git-svnimport.perl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-svnimport.perl b/git-svnimport.perl index ab690f3643..cb9afb955c 100755 --- a/git-svnimport.perl +++ b/git-svnimport.perl @@ -25,7 +25,7 @@ use IPC::Open2; use SVN::Core; use SVN::Ra; -die "Need CVN:Core 1.2.1 or better" if $SVN::Core::VERSION lt "1.2.1"; +die "Need SVN:Core 1.2.1 or better" if $SVN::Core::VERSION lt "1.2.1"; $SIG{'PIPE'}="IGNORE"; $ENV{'TZ'}="UTC"; @@ -34,7 +34,7 @@ our($opt_h,$opt_o,$opt_v,$opt_u,$opt_C,$opt_i,$opt_m,$opt_M,$opt_t,$opt_T,$opt_b sub usage() { print STDERR <<END; -Usage: ${\basename $0} # fetch/update GIT from CVS +Usage: ${\basename $0} # fetch/update GIT from SVN [-o branch-for-HEAD] [-h] [-v] [-l max_num_changes] [-C GIT_repository] [-t tagname] [-T trunkname] [-b branchname] [-d|-D] [-i] [-u] [-s start_chg] [-m] [-M regex] [SVN_URL] |