hgbook
annotate en/examples/mq.tutorial.qnew2.out @ 512:9412f706651e
Publishing via rsync
author | Igor Támara <igor@tamarapatino.org> |
---|---|
date | Fri Jan 16 23:34:35 2009 -0500 (2009-01-16) |
parents | 00f69e8825c5 |
children | 5ffee9123bbf |
rev | line source |
---|---|
bos@144 | 1 $ \textbf{hg qnew second.patch} |
bos@144 | 2 $ \textbf{hg log --style=compact --limit=2} |
bos@162 | 3 2[qtip,second.patch,tip] |
bos@273 | 4 [mq]: second.patch |
bos@144 | 5 |
bos@144 | 6 1[first.patch,qbase] |
bos@273 | 7 [mq]: first.patch |
bos@144 | 8 |
bos@144 | 9 $ \textbf{echo 'line 4' >> file1} |
bos@144 | 10 $ \textbf{hg qrefresh} |
bos@144 | 11 $ \textbf{hg tip --style=compact --patch} |
bos@162 | 12 2[qtip,second.patch,tip] |
bos@273 | 13 [mq]: second.patch |
bos@144 | 14 |
bos@144 | 15 diff -r -r file1 |
bos@144 | 16 |
bos@144 | 17 |
hg@297 | 18 @@ -1,3 +1,4 @@ |
bos@144 | 19 line 1 |
bos@144 | 20 line 2 |
bos@144 | 21 line 3 |
bos@144 | 22 +line 4 |
bos@144 | 23 |
bos@144 | 24 $ \textbf{hg annotate file1} |
bos@144 | 25 0: line 1 |
bos@144 | 26 1: line 2 |
bos@144 | 27 1: line 3 |
bos@144 | 28 2: line 4 |