mirror of
https://github.com/git/git.git
synced 2024-11-28 04:23:30 +08:00
Don't output error on changes in the nodes /, /tags or /branches
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
cbce5d8961
commit
c2c07a5c2a
@ -336,7 +336,12 @@ sub split_path($$) {
|
|||||||
} elsif($path =~ s#^/\Q$branch_name\E/([^/]+)/?##) {
|
} elsif($path =~ s#^/\Q$branch_name\E/([^/]+)/?##) {
|
||||||
$branch = $1;
|
$branch = $1;
|
||||||
} else {
|
} 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 ()
|
return ()
|
||||||
}
|
}
|
||||||
$path = "/" if $path eq "";
|
$path = "/" if $path eq "";
|
||||||
|
Loading…
Reference in New Issue
Block a user