* [PATCH] Handle the case where cvsps claims a branch is an ancestor of itself
@ 2006-02-10 21:02 Christian Biesinger
0 siblings, 0 replies; only message in thread
From: Christian Biesinger @ 2006-02-10 21:02 UTC (permalink / raw)
cvsps sometimes claims that a branch is an ancestor of itself. That confuses
cvsimport. This checkin makes it change the ancestor to HEAD instead.
Signed-off-by: Christian Biesinger <cbiesinger@web.de>
---
On the mozilla.org CVS repository, cvsps managed to output a branch as an
ancestor of itself... This patch allows cvsimport to handle that, although
I'm not sure if this is a good idea (a better fix might be to make cvsps not
do that. I haven't debugged yet why it does this)
git-cvsimport.perl | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
71f7fdb5fd6eccf75ca3c9e070391f94f013dd7e
diff --git a/git-cvsimport.perl b/git-cvsimport.perl
index 4b8ca95..74d6e10 100755
--- a/git-cvsimport.perl
+++ b/git-cvsimport.perl
@@ -811,6 +811,10 @@ while(<CVS>) {
print "In patchset $patchset: ancestor branch unknown, setting to $opt_o" if $opt_v;
$ancestor = $opt_o;
}
+ if ($ancestor eq $branch) {
+ print "CVSPS INCONSISTENCY: Branch is an ancestor of itself. Setting ancestor to $opt_o\n";
+ $ancestor = $opt_o;
+ }
if(-f "$git_dir/refs/heads/$branch") {
print STDERR "Branch $branch already exists!\n";
$state=11;
--
1.1.6
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2006-02-10 21:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-02-10 21:02 [PATCH] Handle the case where cvsps claims a branch is an ancestor of itself Christian Biesinger
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).