up vote 2 down vote favorite
share [g+] share [fb]

is there an easy way to export last n commits into a new mq queue and strip the commits from the real repository?

I do often start out developing a new feature, later realising I did something wrong/would want to use MQ to fold patches.

I am currently doing:

  1. Export last n commits as single patches
  2. Strip last n commits
  3. create new mq
  4. import all patches in reverse order
link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

It's simple (as long as there are no merges):

hg qimport -r base:tip

And voilĂ .

link|improve this answer
Your tip has served me well up until now. However I just hit the caveat you mentioned (as long as there are no merges). What can I do in this case? – Johannes Rudolph Jan 28 '10 at 11:07
feedback

Your Answer

 
or
required, but never shown

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