0

I have two patches:

  • patch1
  • patch2

When I apply patch1, that is the only thing that gets applied. When I do hg qpop and then do hg qpush patch2, for some reason patch1 gets applied too. How can I make them independent from each other?

Saad
  • 49,729
  • 21
  • 73
  • 112

1 Answers1

1

You need to use the --move option for that. For example:

hg qpush --move patch2

This will apply only patch2, but not any patches on top of it.

Reimer Behrends
  • 8,600
  • 15
  • 19