How to separate topics in mercurial

55 Views Asked by At

I have the following structure in my mercurial branch history:

o topicA
|
|
o topicB
|
|
o public_branch

This is a linear dependency between the three, as we can see.

I need a hg command (or set of commands) that will result to the following structure.

o topicA
|
|   o topicB
| /
o public_branch

As you can see the two topics are now separate.

What i have tried is as simple as:

hg rebase -s topicA_rev -d public_branch_rev

But it replies to me "nothing to rebase"

0

There are 0 best solutions below