hgbook

view en/examples/results/mq.tutorial.qnew2.out @ 597:e0d9eb01e4c2

Remove references to RWH.
author Bryan O'Sullivan <bos@serpentine.com>
date Thu Mar 26 23:05:28 2009 -0700 (2009-03-26)
parents 44d1363234d2
children 4432ad34b8e5
line source
1 <screen><prompt>$</prompt> <userinput>hg qnew second.patch</userinput>
2 <prompt>$</prompt> <userinput>hg log --style=compact --limit=2</userinput>
3 2[qtip,second.patch,tip] 2009-03-10 04:38 +0000 bos
4 [mq]: second.patch
6 1[first.patch,qbase] 2009-03-10 04:38 +0000 bos
7 [mq]: first.patch
9 <prompt>$</prompt> <userinput>echo 'line 4' &gt;&gt; file1</userinput>
10 <prompt>$</prompt> <userinput>hg qrefresh</userinput>
11 <prompt>$</prompt> <userinput>hg tip --style=compact --patch</userinput>
12 2[qtip,second.patch,tip] 2009-03-10 04:38 +0000 bos
13 [mq]: second.patch
15 diff -r -r file1
18 @@ -1,3 +1,4 @@
19 line 1
20 line 2
21 line 3
22 +line 4
24 <prompt>$</prompt> <userinput>hg annotate file1</userinput>
25 0: line 1
26 1: line 2
27 1: line 3
28 2: line 4
29 </screen>