# HG changeset patch # User Pierre-Yves David # Date 1357132940 -3600 # Node ID f8c75459e8bd7b339b1be5edf51473b8e309a874 # Parent 40292a37388fd81ad338f25cf594fc834d24fbe4 doc: updates mq refugee book diff -r 40292a37388f -r f8c75459e8bd docs/from-mq.rst --- a/docs/from-mq.rst Wed Jan 02 14:17:17 2013 +0100 +++ b/docs/from-mq.rst Wed Jan 02 14:22:20 2013 +0100 @@ -14,12 +14,13 @@ qseries ``log`` qnew ``commit`` qrefresh ``amend`` +qrefresh --exclude ``uncommit`` qpop ``update`` or ``gdown`` qpush ``update`` or ``gup`` sometimes ``evolve`` qrm ``prune`` qfold ``fold`` qdiff ``odiff`` -qrecord ``/qrecord`` +qrecord ``record`` qfinish -- qimport -- @@ -86,10 +87,10 @@ .. $ hg record babar.py .. $ hg amend -c .^ # .^ refer to "working directoy parent, here 'feature A' -note: refresh is an alias for amend +.. note: refresh is an alias for amend -hg qref -X -```````````` +hg qref --exclude +````````````````````` To remove changes from you current commit use:: @@ -114,10 +115,10 @@ ```````` When you rewrite changesets, descendants of rewritten changesets are marked as -"out of sync". You need to rewrite them on top of the new version of their +"unstable". You need to rewrite them on top of the new version of their ancestor. -The evolution extension adds a command to rewrite the "out of sync" +The evolution extension adds a command to rewrite "unstable" changesets::: $ hg evolve @@ -141,13 +142,6 @@ $ hg prune -hg qrm -``````` - -:: - - $ hg fold :: - hg qfold `````````