Browse Source

Don't output error on changes in the nodes /, /tags or /branches

Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Yaacov Akiba Slama 19 years ago committed by Junio C Hamano
parent
commit
c2c07a5c2a
  1. 7
      git-svnimport.perl

7
git-svnimport.perl

@ -336,7 +336,12 @@ sub split_path($$) { @@ -336,7 +336,12 @@ sub split_path($$) {
} elsif($path =~ s#^/\Q$branch_name\E/([^/]+)/?##) {
$branch = $1;
} else {
print STDERR "$rev: Unrecognized path: $path\n";
my %no_error = (
"/" => 1,
"/$tag_name" => 1,
"/$branch_name" => 1
);
print STDERR "$rev: Unrecognized path: $path\n" unless (defined $no_error{$path});
return ()
}
$path = "/" if $path eq "";

Loading…
Cancel
Save