summaryrefslogtreecommitdiff
path: root/git-svn.perl
diff options
context:
space:
mode:
authorLibravatar Eric Wong <normalperson@yhbt.net>2007-01-24 02:16:25 -0800
committerLibravatar Eric Wong <normalperson@yhbt.net>2007-02-23 00:57:10 -0800
commit7f578c55af80e9346135004bd47099cbb451f859 (patch)
treede8db12cfa862e0cd83a88dbf1e4ad044cf8f9ed /git-svn.perl
parentgit-svn: 'init' attempts to connect to the repository root if possible (diff)
downloadtgif-7f578c55af80e9346135004bd47099cbb451f859.tar.xz
git-svn: --follow-parent now works on sub-directories of larger branches
This means that tracking the path of: /another-larger/trunk/thunk/bump/thud inside a repository would follow: /larger-parent/trunk/thunk/bump/thud even if the svn log output looks like this: -------------------------------------------- Changed paths: A /another-larger (from /larger-parent:5) -------------------------------------------- Note: the usage of get_log() in git-svn still makes a an assumption that shouldn't be made with regard to revisions existing for a particular path. Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-xgit-svn.perl31
1 files changed, 23 insertions, 8 deletions
diff --git a/git-svn.perl b/git-svn.perl
index d290a0d8ee..123d4d63f4 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -1102,9 +1102,21 @@ sub find_parent_branch {
return undef unless $::_follow_parent;
# look for a parent from another branch:
- my $abs_path = '/'.$self->rel_path;
- my $i = $paths->{$abs_path} or goto not_found;
+ my @b_path_components = split m#/#, $self->rel_path;
+ my @a_path_components;
+ my $i;
+ while (@b_path_components) {
+ $i = $paths->{'/'.join('/', @b_path_components)};
+ last if $i;
+ unshift(@a_path_components, pop(@b_path_components));
+ }
+ goto not_found unless defined $i;
my $branch_from = $i->copyfrom_path or goto not_found;
+ if (@a_path_components) {
+ print STDERR "branch_from: $branch_from => ";
+ $branch_from .= '/'.join('/', @a_path_components);
+ print STDERR $branch_from, "\n";
+ }
my $r = $i->copyfrom_rev;
my $repos_root = $self->ra->{repos_root};
my $url = $self->ra->{url};
@@ -1134,10 +1146,11 @@ sub find_parent_branch {
}
my ($r0, $parent) = $gs->find_rev_before($r, 1);
if ($::_follow_parent && (!defined $r0 || !defined $parent)) {
- foreach (0 .. $r) {
- my $log_entry = eval { $gs->do_fetch(undef, $_) };
+ $gs->ra->get_log([$gs->{path}], 0, $r, 0, 1, 1, sub {
+ my ($paths, $rev) = @_;
+ my $log_entry = eval { $gs->do_fetch($paths, $rev) };
$gs->do_git_commit($log_entry) if $log_entry;
- }
+ });
($r0, $parent) = $gs->last_rev_commit;
}
if (defined $r0 && defined $parent && $gs->revisions_eq($r0, $r)) {
@@ -1164,10 +1177,12 @@ sub find_parent_branch {
return $self->make_log_entry($rev, [$parent], $ed);
}
not_found:
- print STDERR "Branch parent for path: '$abs_path' not found\n";
+ print STDERR "Branch parent for path: '/",
+ $self->rel_path, "' not found\n";
return undef unless $paths;
- foreach my $p (sort keys %$paths) {
- print STDERR ' ', $p->action, ' ', $p;
+ foreach my $x (sort keys %$paths) {
+ my $p = $paths->{$x};
+ print STDERR ' ', $p->action, ' ', $x;
if (my $cp_from = $p->copyfrom_path) {
print STDERR "(from $cp_from:", $p->copyfrom_rev, ')';
}