docs/from-mq.rst
branchstable
changeset 1287 6f2c1574eda8
parent 655 dd5765ae91c3
child 1654 d1c5d80b2ace
--- a/docs/from-mq.rst	Thu Apr 23 09:03:08 2015 -0400
+++ b/docs/from-mq.rst	Thu Apr 23 21:05:54 2015 -0400
@@ -1,12 +1,12 @@
 .. Copyright 2011 Pierre-Yves David <pierre-yves.david@ens-lyon.org>
 ..                Logilab SA        <contact@logilab.fr>
 
--------------------------------------------
+-----------------------------------
 From MQ To Evolve, The Refugee Book
--------------------------------------------
+-----------------------------------
 
 Cheat sheet
--------------
+-----------
 
 ==============================  ============================================
 mq command                       new equivalent
@@ -28,10 +28,10 @@
 
 
 Replacement details
----------------------
+-------------------
 
 hg qseries
-```````````
+``````````
 
 All your work in progress is now in real changesets all the time.
 
@@ -45,7 +45,7 @@
   wip = log -r 'not public()' --template='{rev}:{node|short} {desc|firstline}\n'
 
 hg qnew
-````````
+```````
 
 With evolve you handle standard changesets without an additional overlay.
 
@@ -66,7 +66,7 @@
   new-commit=secret
 
 hg qref
-````````
+```````
 
 A new command from evolution will allow you to rewrite the changeset you are
 currently on. Just call:
@@ -90,7 +90,7 @@
 .. note: refresh is an alias for amend
 
 hg qref --exclude
-`````````````````````
+`````````````````
 
 To remove changes from your current commit use::
 
@@ -98,7 +98,7 @@
 
 
 hg qpop
-`````````
+```````
 
 The following command emulates the behavior of hg qpop:
 
@@ -136,14 +136,14 @@
 
 
 hg qrm
-```````
+``````
 
 evolution introduce a new command to mark a changeset as "not wanted anymore".::
 
   $ hg prune <revset>
 
 hg qfold
-`````````
+````````
 
 
 ::
@@ -151,14 +151,14 @@
   $ hg fold first::last
 
 hg qdiff
-`````````
+````````
 
 ``pdiff`` is an alias for `hg diff -r .^` It works like qdiff, but outside MQ.
 
 
 
 hg qfinish and hg qimport
-````````````````````````````
+`````````````````````````
 
 These are not necessary anymore. If you want to control the
 mutability of changesets, see the phase feature.
@@ -166,7 +166,7 @@
 
 
 hg qcommit
-```````````````
+``````````
 
 If you really need to send patches through versioned mq patches, you should
 look at the qsync extension.