hgbook

diff en/examples/mq.tutorial @ 7:339e75288632

More progress on MQ chapter and general support.

Added a note environment.

Fixed generated HTML so it wouldn't use huge escaped entities for everything.

Wrote a small amount of actual content.
author Bryan O'Sullivan <bos@serpentine.com>
date Mon Jun 26 12:25:11 2006 -0700 (2006-06-26)
parents
children a25335b56825
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/en/examples/mq.tutorial	Mon Jun 26 12:25:11 2006 -0700
     1.3 @@ -0,0 +1,20 @@
     1.4 +echo '[extensions]' >> $HGRC
     1.5 +echo 'hgext.mq =' >> $HGRC
     1.6 +
     1.7 +#$ name: qinit
     1.8 +
     1.9 +hg clone http://hg.serpentine.com/mercurial/hg mq-sandbox
    1.10 +
    1.11 +cd mq-sandbox
    1.12 +
    1.13 +hg qinit
    1.14 +
    1.15 +#$ name: qnew
    1.16 +
    1.17 +hg tip
    1.18 +
    1.19 +hg qnew first.patch
    1.20 +
    1.21 +ls .hg/patches
    1.22 +
    1.23 +hg tip