Mercurial > hgbook
annotate en/examples/mq.id.output.out @ 530:f809de31887a
more translation :D
added a term to the glossary
author | jerojasro@localhost |
---|---|
date | Sun, 30 Nov 2008 18:41:51 -0500 |
parents | 00f69e8825c5 |
children |
rev | line source |
---|---|
194 | 1 $ \textbf{hg qapplied} |
2 first.patch | |
3 second.patch | |
4 $ \textbf{hg log -r qbase:qtip} | |
5 changeset: | |
6 tag: first.patch | |
7 tag: qbase | |
8 user: Bryan O'Sullivan <bos@serpentine.com> | |
9 | |
273
00f69e8825c5
Bring book up to date with recent changes.
Bryan O'Sullivan <bos@serpentine.com>
parents:
194
diff
changeset
|
10 summary: [mq]: first.patch |
194 | 11 |
12 changeset: | |
13 tag: qtip | |
14 tag: second.patch | |
15 tag: tip | |
16 user: Bryan O'Sullivan <bos@serpentine.com> | |
17 | |
273
00f69e8825c5
Bring book up to date with recent changes.
Bryan O'Sullivan <bos@serpentine.com>
parents:
194
diff
changeset
|
18 summary: [mq]: second.patch |
194 | 19 |
20 $ \textbf{hg export second.patch} | |
21 # HG changeset patch | |
22 # User Bryan O'Sullivan <bos@serpentine.com> | |
23 | |
24 # Node ID | |
25 # Parent | |
273
00f69e8825c5
Bring book up to date with recent changes.
Bryan O'Sullivan <bos@serpentine.com>
parents:
194
diff
changeset
|
26 [mq]: second.patch |
194 | 27 |
28 diff -r -r other.c | |
29 | |
30 | |
31 @@ -0,0 +1,1 @@ | |
32 +double u; |