git-cvsimport-script: fix branch switching Previous patch broke branch switching. --- commit 46e63efc072bc440e4c6aad33d3157b70f5172b6 tree 2c4fd7286e29e6041808d07874ef2151e3876676 parent 79ee456cf222982f7ee3f003440c57b5f7cffa8b author Sven Verdoolaege <skimo@kotnet.org> Mon, 04 Jul 2005 15:28:36 +0200 committer Sven Verdoolaege <skimo@kotnet.org> Mon, 04 Jul 2005 15:28:36 +0200 git-cvsimport-script | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/git-cvsimport-script b/git-cvsimport-script --- a/git-cvsimport-script +++ b/git-cvsimport-script @@ -651,9 +651,10 @@ while(<CVS>) { } if(($ancestor || $branch) ne $last_branch) { print "Switching from $last_branch to $branch\n" if $opt_v; - system("git-read-tree","-m","$last_branch","$branch"); + system("git-read-tree", $branch); die "read-tree failed: $?\n" if $?; } + $last_branch = $branch if $branch ne $last_branch; $state = 9; } elsif($state == 8) { $logmsg .= "$_\n"; - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sat Jul 09 17:47:30 2005
This archive was generated by hypermail 2.1.8 : 2005-07-09 17:47:32 EST