hgbook

annotate 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
rev   line source
bos@7 1 echo '[extensions]' >> $HGRC
bos@7 2 echo 'hgext.mq =' >> $HGRC
bos@7 3
bos@7 4 #$ name: qinit
bos@7 5
bos@7 6 hg clone http://hg.serpentine.com/mercurial/hg mq-sandbox
bos@7 7
bos@7 8 cd mq-sandbox
bos@7 9
bos@7 10 hg qinit
bos@7 11
bos@7 12 #$ name: qnew
bos@7 13
bos@7 14 hg tip
bos@7 15
bos@7 16 hg qnew first.patch
bos@7 17
bos@7 18 ls .hg/patches
bos@7 19
bos@7 20 hg tip