hgbook
annotate en/examples/mq.id.out.out @ 486:d1962e8a986f
corrected a typo
author | Javier Rojas <jerojasro@devnull.li> |
---|---|
date | Mon Jan 05 23:57:11 2009 -0500 (2009-01-05) |
parents | |
children |
rev | line source |
---|---|
bos@144 | 1 $ \textbf{hg qapplied} |
bos@144 | 2 first.patch |
bos@144 | 3 second.patch |
bos@144 | 4 $ \textbf{hg log -r qbase:qtip} |
bos@144 | 5 changeset: |
bos@144 | 6 tag: first.patch |
bos@144 | 7 tag: qbase |
bos@144 | 8 user: Bryan O'Sullivan <bos@serpentine.com> |
bos@144 | 9 |
bos@144 | 10 summary: patch queue: first.patch |
bos@144 | 11 |
bos@144 | 12 changeset: |
bos@144 | 13 tag: second.patch |
bos@144 | 14 tag: qtip |
bos@144 | 15 tag: tip |
bos@144 | 16 user: Bryan O'Sullivan <bos@serpentine.com> |
bos@144 | 17 |
bos@144 | 18 summary: patch queue: second.patch |
bos@144 | 19 |
bos@144 | 20 $ \textbf{hg export second.patch} |
bos@144 | 21 # HG changeset patch |
bos@144 | 22 # User Bryan O'Sullivan <bos@serpentine.com> |
bos@144 | 23 |
bos@144 | 24 # Node ID |
bos@144 | 25 # Parent |
bos@144 | 26 patch queue: second.patch |
bos@144 | 27 |
bos@144 | 28 diff -r -r other.c |
bos@144 | 29 |
bos@144 | 30 |
bos@144 | 31 @@ -0,0 +1,1 @@ |
bos@144 | 32 +double u; |