hgbook
view en/examples/mq.tutorial.qnew2.out @ 178:1b55292716a4
correct single typo in chpt 5 text
author | Steve Guidon <steve.guidon@gmail.com> |
---|---|
date | Thu Mar 29 19:55:18 2007 +0100 (2007-03-29) |
parents | 006bbad1f190 |
children | 00f69e8825c5 |
line source
1 $ \textbf{hg qnew second.patch}
2 $ \textbf{hg log --style=compact --limit=2}
3 2[qtip,second.patch,tip]
4 New patch: second.patch
6 1[first.patch,qbase]
7 patch queue: 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]
13 patch queue: second.patch
15 diff -r -r file1
18 @@ -1,3 +1,4 @@ line 1
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