Mercurial > hgbook
comparison en/examples/mq.tutorial.qrefresh.out @ 144:006bbad1f190
Add expected output files.
This makes it possible to spot changes in Mercurial's output and
behaviour over time.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Tue, 06 Mar 2007 21:44:56 -0800 |
parents | |
children | 00f69e8825c5 |
comparison
equal
deleted
inserted
replaced
143:f2aabd15dd50 | 144:006bbad1f190 |
---|---|
1 $ \textbf{echo 'line 2' >> file1} | |
2 $ \textbf{hg diff} | |
3 diff -r file1 | |
4 | |
5 | |
6 @@ -1,1 +1,2 @@ line 1 | |
7 line 1 | |
8 +line 2 | |
9 $ \textbf{hg qrefresh} | |
10 $ \textbf{hg diff} | |
11 $ \textbf{hg tip --style=compact --patch} | |
12 1[qtip,first.patch,tip,qbase] | |
13 patch queue: first.patch | |
14 | |
15 diff -r -r file1 | |
16 | |
17 | |
18 @@ -1,1 +1,2 @@ line 1 | |
19 line 1 | |
20 +line 2 | |
21 |