Code

git-svn: fix fetch with moved path when using rewriteRoot
authorEric Wong <normalperson@yhbt.net>
Mon, 29 Aug 2011 00:45:44 +0000 (00:45 +0000)
committerEric Wong <normalperson@yhbt.net>
Thu, 1 Sep 2011 07:10:22 +0000 (07:10 +0000)
The matching step in commit 3235b7053c45a734c1cdf9b117bda68b7ced29c9
did not properly account for users of the "rewriteRoot"
configuration parameter.

ref: <CANWsHyfHtr0EaJtNsDK9UTcmb_AbLg-1jUA-0uWJ-nEeNosb7w@mail.gmail.com>

Suggested-by: H Krishnan <hetchkay@gmail.com>
Signed-off-by: Eric Wong <normalperson@yhbt.net>
git-svn.perl

index 96f373f81a7716b6690a1e9c1519860fcfbc06c6..32792d3ef344a85f97720f92b9488245a848354d 100755 (executable)
@@ -3022,7 +3022,7 @@ sub other_gs {
                        my (undef, $max_commit) = $gs->rev_map_max(1);
                        last if (!$max_commit);
                        my ($url) = ::cmt_metadata($max_commit);
-                       last if ($url eq $gs->full_url);
+                       last if ($url eq $gs->metadata_url);
                        $ref_id .= '-';
                }
                print STDERR "Initializing parent: $ref_id\n" unless $::_q > 1;