From c3560e535c67b4084852da00507ff4b7fdf98ffc Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 12 Feb 2007 16:03:32 -0800 Subject: [PATCH] git-svn: write the highest maxRex out for branches and tags Even if nothing touched paths we care about in a fetch; increment the maxRev like we do with rev_db since we don't like having to run get_log on revisions we've seen before. Signed-off-by: Eric Wong --- git-svn.perl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/git-svn.perl b/git-svn.perl index beebe3d954..b7e46e5b0b 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -2765,6 +2765,10 @@ sub gs_fetch_loop_common { next if defined $gs->rev_db_get($max); $gs->rev_db_set($max, 0 x40); } + foreach my $g (@$globs) { + my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev"; + Git::SVN::tmp_config($k, $max); + } last if $max >= $head; $min = $max + 1; $max += $inc; -- 2.11.4.GIT