vote up 1 vote down star

Hi,

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
flag

1 Answer

vote up 5 vote down check

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

hg qimport -r base:tip

And voilĂ .

link|flag

Your Answer

Get an OpenID
or

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