I have two patches:
patch1patch2
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?
I have two patches:
patch1patch2When 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?
Copyright © 2021 Jogjafile Inc.
You need to use the
--moveoption for that. For example:This will apply only
patch2, but not any patches on top of it.