diff options
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-x | git-svn.perl | 4 |
1 files changed, 4 insertions, 0 deletions
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; |