Reputation: 964
I have two diffrenet Mercurial repos, the A and the S. The repos S has two branches with two heads and some merges between the branches. I want to transplant this two branches preserving its names and the structure onto the revision N of the repo A.
Is it possible to do that using transplant extension of hg? I've failed to find a way to produce a commit with two parents (merge commit) using transplant.
Upvotes: 0
Views: 342
Reputation: 97365
No-no-no
Describe your business-task better: maybe you just want pull two branches into A (hg pull -b BRANCH_1 -b BRANCH_2
)?
Upvotes: 1