hgbook
view en/examples/results/mq.tutorial.qnew2.out @ 598:7893b3824715
Add a top-level index page.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Fri Mar 27 00:01:58 2009 -0700 (2009-03-27) |
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' >> 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>