Is there a command to move a patch between patch queues?

I understand that patch queues have a fairly simple implementation, and you can move the material manually, but is there a command to move the patch between two queues?

+5
source share
2 answers

No no; You will have to write an alias for yourself.

0
source

To do this manually, you assume that you have two queues of queues "A" and "B" and want to move the patch call "MyPatch" from "A" to "B":

  • Open the .hg/patches-Adirectory at the root of the repo
  • Copy file MyPatchto directory.hg/patches-B
  • .hg/patches-A/series "MyPatch"
  • .hg/patches-B/series "MyPatch"

series .

, mq, script.

+3

All Articles