Hi, git-svnimport will import the same revision over and over again if a limit (-l <rev>) has been specified. Instead if that revision has already been processed, exit with an up-to-date message. Please apply. Thanks, Anand Signed-off-by: Anand Kumria <wildfire@xxxxxxxxxxx> --- git-svnimport.perl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 66e05a5854eb269e3e61fcaa9f53a4b2a45b17d8 diff --git a/git-svnimport.perl b/git-svnimport.perl index 639aa41..114784f 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; -- 1.2.4 - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html