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, 26 Jun 2006 12:25:11 -0700
parents
children a25335b56825
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/en/examples/mq.tutorial	Mon Jun 26 12:25:11 2006 -0700
@@ -0,0 +1,20 @@
+echo '[extensions]' >> $HGRC
+echo 'hgext.mq =' >> $HGRC
+
+#$ name: qinit
+
+hg clone http://hg.serpentine.com/mercurial/hg mq-sandbox
+
+cd mq-sandbox
+
+hg qinit
+
+#$ name: qnew
+
+hg tip
+
+hg qnew first.patch
+
+ls .hg/patches
+
+hg tip