* [PATCH 3/7] Don't output error when there are changes in the nodes /, /tags or /branches
@ 2005-11-02 21:51 Yaacov Akiba Slama
0 siblings, 0 replies; only message in thread
From: Yaacov Akiba Slama @ 2005-11-02 21:51 UTC (permalink / raw)
---
git-svnimport.perl | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
applies-to: d711bb120e7c95914069cff4996ddbcfc29c20f6
e5d8e159e80ead8eef0867a3662a83b3948aaa18
diff --git a/git-svnimport.perl b/git-svnimport.perl
index 83b70f9..ea5bbdb 100755
--- a/git-svnimport.perl
+++ b/git-svnimport.perl
@@ -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 "";
---
0.99.9.GIT
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2005-11-02 21:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-02 21:51 [PATCH 3/7] Don't output error when there are changes in the nodes /, /tags or /branches Yaacov Akiba Slama
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).