author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
Sat, 31 Mar 2012 15:55:03 +0900 | |
branch | stable |
changeset 16323 | 0789d1bbf6c1 |
parent 15918 | 4f9853e7f690 |
child 16094 | 0776a6cababe |
permissions | -rw-r--r-- |
15361 | 1 |
Create a repo with some stuff in it: |
2 |
||
3 |
$ hg init a |
|
4 |
$ cd a |
|
5 |
$ echo a > a |
|
6 |
$ echo a > d |
|
7 |
$ echo a > e |
|
8 |
$ hg ci -qAm0 |
|
9 |
$ echo b > a |
|
10 |
$ hg ci -m1 -u bar |
|
11 |
$ hg mv a b |
|
12 |
$ hg ci -m2 |
|
13 |
$ hg cp b c |
|
14 |
$ hg ci -m3 -u baz |
|
15 |
$ echo b > d |
|
16 |
$ echo f > e |
|
17 |
$ hg ci -m4 |
|
18 |
$ hg up -q 3 |
|
19 |
$ echo b > e |
|
20 |
$ hg branch -q stable |
|
21 |
$ hg ci -m5 |
|
22 |
$ hg merge -q default --tool internal:local |
|
23 |
$ hg branch -q default |
|
24 |
$ hg ci -m6 |
|
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
25 |
$ hg phase --public 3 |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
26 |
$ hg phase --force --secret 6 |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
27 |
|
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
28 |
$ hg --config extensions.graphlog= log -G --template '{author}@{rev}.{phase}: {desc}\n' |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
29 |
@ test@6.secret: 6 |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
30 |
|\ |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
31 |
| o test@5.draft: 5 |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
32 |
| | |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
33 |
o | test@4.draft: 4 |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
34 |
|/ |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
35 |
o baz@3.public: 3 |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
36 |
| |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
37 |
o test@2.public: 2 |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
38 |
| |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
39 |
o bar@1.public: 1 |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
40 |
| |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
41 |
o test@0.public: 0 |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
42 |
|
15361 | 43 |
|
44 |
Need to specify a rev: |
|
45 |
||
46 |
$ hg graft |
|
47 |
abort: no revisions specified |
|
48 |
[255] |
|
49 |
||
50 |
Can't graft ancestor: |
|
51 |
||
52 |
$ hg graft 1 2 |
|
53 |
skipping ancestor revision 1 |
|
54 |
skipping ancestor revision 2 |
|
55 |
[255] |
|
56 |
||
57 |
Can't graft with dirty wd: |
|
58 |
||
59 |
$ hg up -q 0 |
|
60 |
$ echo foo > a |
|
61 |
$ hg graft 1 |
|
62 |
abort: outstanding uncommitted changes |
|
63 |
[255] |
|
64 |
$ hg revert a |
|
65 |
||
66 |
Graft a rename: |
|
67 |
||
68 |
$ hg graft 2 -u foo |
|
69 |
grafting revision 2 |
|
70 |
merging a and b to b |
|
71 |
$ hg export tip --git |
|
72 |
# HG changeset patch |
|
73 |
# User foo |
|
74 |
# Date 0 0 |
|
75 |
# Node ID d2e44c99fd3f31c176ea4efb9eca9f6306c81756 |
|
76 |
# Parent 68795b066622ca79a25816a662041d8f78f3cd9e |
|
77 |
2 |
|
78 |
||
79 |
diff --git a/a b/b |
|
80 |
rename from a |
|
81 |
rename to b |
|
82 |
--- a/a |
|
83 |
+++ b/b |
|
84 |
@@ -1,1 +1,1 @@ |
|
85 |
-a |
|
86 |
+b |
|
87 |
||
88 |
Look for extra:source |
|
89 |
||
90 |
$ hg log --debug -r tip |
|
91 |
changeset: 7:d2e44c99fd3f31c176ea4efb9eca9f6306c81756 |
|
92 |
tag: tip |
|
15907
51fc43253a52
changeset_printer: display changeset phase on debug level
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
15777
diff
changeset
|
93 |
phase: draft |
15361 | 94 |
parent: 0:68795b066622ca79a25816a662041d8f78f3cd9e |
95 |
parent: -1:0000000000000000000000000000000000000000 |
|
96 |
manifest: 7:5d59766436fd8fbcd38e7bebef0f6eaf3eebe637 |
|
97 |
user: foo |
|
98 |
date: Thu Jan 01 00:00:00 1970 +0000 |
|
99 |
files+: b |
|
100 |
files-: a |
|
101 |
extra: branch=default |
|
102 |
extra: source=5c095ad7e90f871700f02dd1fa5012cb4498a2d4 |
|
103 |
description: |
|
104 |
2 |
|
105 |
||
106 |
||
107 |
||
108 |
Graft out of order, skipping a merge and a duplicate |
|
109 |
||
110 |
$ hg graft 1 5 4 3 'merge()' 2 --debug |
|
111 |
skipping ungraftable merge revision 6 |
|
112 |
scanning for duplicate grafts |
|
113 |
skipping already grafted revision 2 |
|
114 |
grafting revision 1 |
|
115 |
searching for copies back to rev 1 |
|
116 |
unmatched files in local: |
|
117 |
a.orig |
|
118 |
b |
|
119 |
all copies found (* = to merge, ! = divergent): |
|
120 |
b -> a * |
|
121 |
checking for directory renames |
|
122 |
resolving manifests |
|
15625
efdcce3fd2d5
merge: make debug output easier to read
Martin Geisler <mg@aragost.com>
parents:
15513
diff
changeset
|
123 |
overwrite: False, partial: False |
efdcce3fd2d5
merge: make debug output easier to read
Martin Geisler <mg@aragost.com>
parents:
15513
diff
changeset
|
124 |
ancestor: 68795b066622, local: d2e44c99fd3f+, remote: 5d205f8b35b6 |
15361 | 125 |
b: local copied/moved to a -> m |
126 |
preserving b for resolve of b |
|
127 |
updating: b 1/1 files (100.00%) |
|
128 |
b |
|
129 |
b: searching for copy revision for a |
|
130 |
b: copy a:b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 |
|
131 |
grafting revision 5 |
|
132 |
searching for copies back to rev 1 |
|
133 |
unmatched files in local: |
|
134 |
a.orig |
|
135 |
resolving manifests |
|
15625
efdcce3fd2d5
merge: make debug output easier to read
Martin Geisler <mg@aragost.com>
parents:
15513
diff
changeset
|
136 |
overwrite: False, partial: False |
efdcce3fd2d5
merge: make debug output easier to read
Martin Geisler <mg@aragost.com>
parents:
15513
diff
changeset
|
137 |
ancestor: 4c60f11aa304, local: 6f5ea6ac8b70+, remote: 97f8bfe72746 |
15361 | 138 |
e: remote is newer -> g |
139 |
updating: e 1/1 files (100.00%) |
|
140 |
getting e |
|
141 |
e |
|
142 |
grafting revision 4 |
|
143 |
searching for copies back to rev 1 |
|
144 |
unmatched files in local: |
|
145 |
a.orig |
|
146 |
resolving manifests |
|
15625
efdcce3fd2d5
merge: make debug output easier to read
Martin Geisler <mg@aragost.com>
parents:
15513
diff
changeset
|
147 |
overwrite: False, partial: False |
efdcce3fd2d5
merge: make debug output easier to read
Martin Geisler <mg@aragost.com>
parents:
15513
diff
changeset
|
148 |
ancestor: 4c60f11aa304, local: 77eb504366ab+, remote: 9c233e8e184d |
15361 | 149 |
e: versions differ -> m |
150 |
d: remote is newer -> g |
|
151 |
preserving e for resolve of e |
|
152 |
updating: d 1/2 files (50.00%) |
|
153 |
getting d |
|
154 |
updating: e 2/2 files (100.00%) |
|
155 |
picked tool 'internal:merge' for e (binary False symlink False) |
|
156 |
merging e |
|
157 |
my e@77eb504366ab+ other e@9c233e8e184d ancestor e@68795b066622 |
|
158 |
warning: conflicts during merge. |
|
15501
2371f4aea665
merge: give a special message for internal:merge failure (issue3105)
Matt Mackall <mpm@selenic.com>
parents:
15361
diff
changeset
|
159 |
merging e incomplete! (edit conflicts, then use 'hg resolve --mark') |
15361 | 160 |
abort: unresolved conflicts, can't continue |
161 |
(use hg resolve and hg graft --continue) |
|
162 |
[255] |
|
163 |
||
164 |
Continue without resolve should fail: |
|
165 |
||
166 |
$ hg graft -c |
|
167 |
grafting revision 4 |
|
168 |
abort: unresolved merge conflicts (see hg help resolve) |
|
169 |
[255] |
|
170 |
||
171 |
Fix up: |
|
172 |
||
173 |
$ echo b > e |
|
174 |
$ hg resolve -m e |
|
175 |
||
176 |
Continue with a revision should fail: |
|
177 |
||
178 |
$ hg graft -c 6 |
|
179 |
abort: can't specify --continue and revisions |
|
180 |
[255] |
|
181 |
||
182 |
Continue for real, clobber usernames |
|
183 |
||
184 |
$ hg graft -c -U |
|
185 |
grafting revision 4 |
|
186 |
grafting revision 3 |
|
187 |
||
188 |
Compare with original: |
|
189 |
||
190 |
$ hg diff -r 6 |
|
191 |
$ hg status --rev 0:. -C |
|
192 |
M d |
|
193 |
M e |
|
194 |
A b |
|
195 |
a |
|
196 |
A c |
|
197 |
a |
|
198 |
R a |
|
199 |
||
200 |
View graph: |
|
201 |
||
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
202 |
$ hg --config extensions.graphlog= log -G --template '{author}@{rev}.{phase}: {desc}\n' |
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
203 |
@ test@11.draft: 3 |
15361 | 204 |
| |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
205 |
o test@10.draft: 4 |
15361 | 206 |
| |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
207 |
o test@9.draft: 5 |
15361 | 208 |
| |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
209 |
o bar@8.draft: 1 |
15361 | 210 |
| |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
211 |
o foo@7.draft: 2 |
15361 | 212 |
| |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
213 |
| o test@6.secret: 6 |
15361 | 214 |
| |\ |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
215 |
| | o test@5.draft: 5 |
15361 | 216 |
| | | |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
217 |
| o | test@4.draft: 4 |
15361 | 218 |
| |/ |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
219 |
| o baz@3.public: 3 |
15361 | 220 |
| | |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
221 |
| o test@2.public: 2 |
15361 | 222 |
| | |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
223 |
| o bar@1.public: 1 |
15361 | 224 |
|/ |
15918
4f9853e7f690
graft: add test to check the phase of new changesets
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
15907
diff
changeset
|
225 |
o test@0.public: 0 |
15361 | 226 |
|
15506
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
227 |
Graft again onto another branch should preserve the original source |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
228 |
$ hg up -q 0 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
229 |
$ echo 'g'>g |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
230 |
$ hg add g |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
231 |
$ hg ci -m 7 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
232 |
created new head |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
233 |
$ hg graft 7 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
234 |
grafting revision 7 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
235 |
|
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
236 |
$ hg log -r 7 --template '{rev}:{node}\n' |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
237 |
7:d2e44c99fd3f31c176ea4efb9eca9f6306c81756 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
238 |
$ hg log -r 2 --template '{rev}:{node}\n' |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
239 |
2:5c095ad7e90f871700f02dd1fa5012cb4498a2d4 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
240 |
|
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
241 |
$ hg log --debug -r tip |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
242 |
changeset: 13:39bb1d13572759bd1e6fc874fed1b12ece047a18 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
243 |
tag: tip |
15907
51fc43253a52
changeset_printer: display changeset phase on debug level
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
15777
diff
changeset
|
244 |
phase: draft |
15506
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
245 |
parent: 12:b592ea63bb0c19a6c5c44685ee29a2284f9f1b8f |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
246 |
parent: -1:0000000000000000000000000000000000000000 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
247 |
manifest: 13:0780e055d8f4cd12eadd5a2719481648f336f7a9 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
248 |
user: foo |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
249 |
date: Thu Jan 01 00:00:00 1970 +0000 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
250 |
files+: b |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
251 |
files-: a |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
252 |
extra: branch=default |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
253 |
extra: source=5c095ad7e90f871700f02dd1fa5012cb4498a2d4 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
254 |
description: |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
255 |
2 |
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
256 |
|
dc9fb7015d7f
graft: preserve original source in subsequent grafts
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15361
diff
changeset
|
257 |
|
15508
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
258 |
Disallow grafting an already grafted cset onto its original branch |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
259 |
$ hg up -q 6 |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
260 |
$ hg graft 7 |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
261 |
skipping already grafted revision 7 (was grafted from 2) |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
262 |
[255] |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
263 |
|
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
264 |
Disallow grafting already grafted csets with the same origin onto each other |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
265 |
$ hg up -q 13 |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
266 |
$ hg graft 2 |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
267 |
skipping already grafted revision 2 |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
268 |
[255] |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
269 |
$ hg graft 7 |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
270 |
skipping already grafted revision 7 (same origin 2) |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
271 |
[255] |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
272 |
|
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
273 |
$ hg up -q 7 |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
274 |
$ hg graft 2 |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
275 |
skipping already grafted revision 2 |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
276 |
[255] |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
277 |
$ hg graft tip |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
278 |
skipping already grafted revision 13 (same origin 2) |
00276525e2b7
graft: disallow grafting grafted csets in specific situations (issue3091)
Stefano Tortarolo <stefano.tortarolo@gmail.com>
parents:
15507
diff
changeset
|
279 |
[255] |