# HG changeset patch # User Oleksandr Gavenko # Date 1420732416 -7200 # Node ID 86a2cb376ee92c4b60bef52847783be89e31c820 # Parent 40bb400c925e73c04a7eb453a748c928bc3edced Moving changes from MQ to working tree. diff -r 40bb400c925e -r 86a2cb376ee9 hg.rst --- a/hg.rst Thu Jan 08 17:50:01 2015 +0200 +++ b/hg.rst Thu Jan 08 17:53:36 2015 +0200 @@ -390,6 +390,15 @@ $ hg qpop -a $ for patch in `hg qser`; do hg qrm $patch; done +Moving changes from MQ to working tree. +======================================= +:: + + $ hg qpop my.patch + $ hg qdel --keep my.patch + $ patch -p1 .hg/patches/my.patch + $ rm .hg/patches/my.patch + Split patch in MQ. ==================