Mercurial: move MQ patch to shelve? -
Emacs VC mode shows changes in directory state but ignores MQ changes ...
I remove Wish to patches from queue and apply it to the working directory.
This is possible with the normal patch
command, but it allows some arguments and paths to automate the utilities (which are not all environments).
I hope hg
is the underlying solution. Ideally - to move the patch to the shelves.
Take a change in the tree working from the MQ and forget it:
$ hg qgoto my.patch $ hg qpop $ hg qdel --keep my.patch $ patch -p1 Hg / patch / my.patch $ rm Hg / patches / my.patch
To see the difference in the top MQ patch, I think the command Cu Cx v D Qparent RET qtip RET
:
$ hg diff -r qparent: qtip
or small:
$ hg diff -r qparent
< / Pre>or:
$ hg qdiff
but the latest command does not exist in Emacs VC mode.
Comments
Post a Comment