hgbook
annotate en/examples/mq.tutorial.qrefresh2.out @ 161:7f07aca44938
Write up the unpleasant effects of change ef1f1a4b2efb in the hg tree.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Mon Mar 26 21:58:24 2007 -0700 (2007-03-26) |
parents | |
children | 00f69e8825c5 |
rev | line source |
---|---|
bos@144 | 1 $ \textbf{echo 'line 3' >> file1} |
bos@144 | 2 $ \textbf{hg status} |
bos@144 | 3 M file1 |
bos@144 | 4 $ \textbf{hg qrefresh} |
bos@144 | 5 $ \textbf{hg tip --style=compact --patch} |
bos@144 | 6 1[qtip,first.patch,tip,qbase] |
bos@144 | 7 patch queue: first.patch |
bos@144 | 8 |
bos@144 | 9 diff -r -r file1 |
bos@144 | 10 |
bos@144 | 11 |
bos@144 | 12 @@ -1,1 +1,3 @@ line 1 |
bos@144 | 13 line 1 |
bos@144 | 14 +line 2 |
bos@144 | 15 +line 3 |
bos@144 | 16 |