hgbook

view en/examples/mq.tutorial.qnew2.out @ 550:5cd47f721686

Rename LaTeX input files to have numeric prefixes
author Bryan O'Sullivan <bos@serpentine.com>
date Thu Jan 29 22:56:27 2009 -0800 (2009-01-29)
parents bd8d96d3703d
children
line source
1 $ \textbf{hg qnew second.patch}
2 $ \textbf{hg log --style=compact --limit=2}
3 2[qtip,second.patch,tip] 2009-01-30 06:34 +0000 bos
4 [mq]: second.patch
6 1[first.patch,qbase] 2009-01-30 06:34 +0000 bos
7 [mq]: first.patch
9 $ \textbf{echo 'line 4' >> file1}
10 $ \textbf{hg qrefresh}
11 $ \textbf{hg tip --style=compact --patch}
12 2[qtip,second.patch,tip] 2009-01-30 06:34 +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 $ \textbf{hg annotate file1}
25 0: line 1
26 1: line 2
27 1: line 3
28 2: line 4