comparison 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, 26 Jun 2006 12:25:11 -0700
parents
children a25335b56825
comparison
equal deleted inserted replaced
6:69d90ab9fd80 7:339e75288632
1 echo '[extensions]' >> $HGRC
2 echo 'hgext.mq =' >> $HGRC
3
4 #$ name: qinit
5
6 hg clone http://hg.serpentine.com/mercurial/hg mq-sandbox
7
8 cd mq-sandbox
9
10 hg qinit
11
12 #$ name: qnew
13
14 hg tip
15
16 hg qnew first.patch
17
18 ls .hg/patches
19
20 hg tip