hgbook
annotate en/examples/mq.id.output.out @ 322:73b094b764ec
Fixed bad argument usage with bisect
author | Nicolas Cavigneaux <nico@bounga.org> |
---|---|
date | Thu Jan 15 10:13:51 2009 +0100 (2009-01-15) |
parents | a8cc7fa833a3 |
children |
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@273 | 10 summary: [mq]: 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@273 | 18 summary: [mq]: 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@273 | 26 [mq]: 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; |