* [PATCH]: git-svnimport: if a limit is specified, respect it
@ 2006-03-25 22:43 Anand Kumria
0 siblings, 0 replies; only message in thread
From: Anand Kumria @ 2006-03-25 22:43 UTC (permalink / raw)
To: git; +Cc: Anand Kumria
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@progsoc.org>
---
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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2006-03-25 22:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-25 22:43 [PATCH]: git-svnimport: if a limit is specified, respect it Anand Kumria
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox