From: Anand Kumria Date: Sat, 25 Mar 2006 22:43:46 +0000 (+1100) Subject: git-svnimport: if a limit is specified, respect it X-Git-Tag: v1.3.0-rc1~1^2 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=a7cfb4a43fce841cd673057cf4137f85e6f804eb;p=git.git git-svnimport: if a limit is specified, respect it git-svnimport will import the same revision over and over again if a limit (-l ) has been specified. Instead if that revision has already been processed, exit with an up-to-date message. Signed-off-by: Anand Kumria Signed-off-by: Junio C Hamano --- diff --git a/git-svnimport.perl b/git-svnimport.perl index 639aa418..114784ff 100755 --- a/git-svnimport.perl +++ b/git-svnimport.perl @@ -851,7 +851,7 @@ sub commit_all { $opt_l = $svn->{'maxrev'} if not defined $opt_l or $opt_l > $svn->{'maxrev'}; -if ($svn->{'maxrev'} < $current_rev) { +if ($opt_l < $current_rev) { print "Up to date: no new revisions to fetch!\n" if $opt_v; unlink("$git_dir/SVN2GIT_HEAD"); exit;