hgbook
annotate en/examples/mq.id.output.out @ 198:615f3c6b30e1
Start to describe branch management.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Mon Apr 16 17:21:38 2007 -0700 (2007-04-16) |
parents | |
children | 00f69e8825c5 |
rev | line source |
---|---|
bos@194 | 1 $ \textbf{hg qapplied} |
bos@194 | 2 first.patch |
bos@194 | 3 second.patch |
bos@194 | 4 $ \textbf{hg log -r qbase:qtip} |
bos@194 | 5 changeset: |
bos@194 | 6 tag: first.patch |
bos@194 | 7 tag: qbase |
bos@194 | 8 user: Bryan O'Sullivan <bos@serpentine.com> |
bos@194 | 9 |
bos@194 | 10 summary: patch queue: first.patch |
bos@194 | 11 |
bos@194 | 12 changeset: |
bos@194 | 13 tag: qtip |
bos@194 | 14 tag: second.patch |
bos@194 | 15 tag: tip |
bos@194 | 16 user: Bryan O'Sullivan <bos@serpentine.com> |
bos@194 | 17 |
bos@194 | 18 summary: patch queue: second.patch |
bos@194 | 19 |
bos@194 | 20 $ \textbf{hg export second.patch} |
bos@194 | 21 # HG changeset patch |
bos@194 | 22 # User Bryan O'Sullivan <bos@serpentine.com> |
bos@194 | 23 |
bos@194 | 24 # Node ID |
bos@194 | 25 # Parent |
bos@194 | 26 patch queue: second.patch |
bos@194 | 27 |
bos@194 | 28 diff -r -r other.c |
bos@194 | 29 |
bos@194 | 30 |
bos@194 | 31 @@ -0,0 +1,1 @@ |
bos@194 | 32 +double u; |