Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to move a changeset from one branch to another. Basically, I currently have:

A -> B -> C -> D # default branch

And I want:

A # default branch
 \-> B -> C -> D # some_new_branch

Where some_new_branch does not exist yet. I am used to git, so I guess there is a simple "mercurial" way I am missing.

share|improve this question
2  
It probably depends on what you mean by "branch". Mercurial has many different branching strategies, which you should try to acquaint yourself with: stevelosh.com/blog/2009/08/a-guide-to-branching-in-mercurial – user37078 Mar 28 '10 at 16:59
Similar question: Mercurial move changes to a new branch – Oben Sonne Apr 29 '12 at 19:22

2 Answers

One way is to export a patch for B,C,D; update to A; branch; apply patch:

hg export -o patch B C D
hg update A
hg branch branchname
hg import patch

To remove B,C,D from the default branch, use the mq extension's strip command.

share|improve this answer
In a project we decided not to include a feature in the next release, which was already part of the default branch - I used your solution to create a new branch with the changesets related to this feature. Instead of stripping the changesets, I reverted the default branch to the state before the implementation started. – Michael Schmeißer Oct 18 '12 at 9:59

Sounds a bit like a cherry-pick operation in git. The Transplant Extension may be what you're looking for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.