hgbook
annotate en/examples/mq.tutorial.qrefresh.out @ 306:1b52bda675d0
Fix sample output for 'tour' test.
author | Guido Ostkamp <hg@ostkamp.fastmail.fm> |
---|---|
date | Wed Aug 20 22:08:24 2008 +0200 (2008-08-20) |
parents | 00f69e8825c5 |
children | 5ffee9123bbf |
rev | line source |
---|---|
bos@144 | 1 $ \textbf{echo 'line 2' >> file1} |
bos@144 | 2 $ \textbf{hg diff} |
bos@144 | 3 diff -r file1 |
bos@144 | 4 |
bos@144 | 5 |
hg@297 | 6 @@ -1,1 +1,2 @@ |
bos@144 | 7 line 1 |
bos@144 | 8 +line 2 |
bos@144 | 9 $ \textbf{hg qrefresh} |
bos@144 | 10 $ \textbf{hg diff} |
bos@144 | 11 $ \textbf{hg tip --style=compact --patch} |
bos@144 | 12 1[qtip,first.patch,tip,qbase] |
bos@273 | 13 [mq]: first.patch |
bos@144 | 14 |
bos@144 | 15 diff -r -r file1 |
bos@144 | 16 |
bos@144 | 17 |
hg@297 | 18 @@ -1,1 +1,2 @@ |
bos@144 | 19 line 1 |
bos@144 | 20 +line 2 |
bos@144 | 21 |