hgbook

view 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 source
1 echo '[extensions]' >> $HGRC
2 echo 'hgext.mq =' >> $HGRC
4 #$ name: qinit
6 hg clone http://hg.serpentine.com/mercurial/hg mq-sandbox
8 cd mq-sandbox
10 hg qinit
12 #$ name: qnew
14 hg tip
16 hg qnew first.patch
18 ls .hg/patches
20 hg tip