Show More
@@ -1,108 +1,113 | |||
|
1 | 1 | #!/bin/sh |
|
2 | 2 | |
|
3 | heads() | |
|
4 | { | |
|
5 | hg heads --template '#rev#: #desc|firstline|strip#\n' "$@" | |
|
6 | } | |
|
7 | ||
|
3 | 8 | hg init a |
|
4 | 9 | cd a |
|
5 | 10 | echo 'root' >root |
|
6 | 11 | hg add root |
|
7 |
hg commit - |
|
|
8 |
|
|
|
12 | hg commit -m "Adding root node" | |
|
13 | heads | |
|
9 | 14 | echo '-------' |
|
10 |
|
|
|
15 | heads . | |
|
11 | 16 | |
|
12 | 17 | echo '=======' |
|
13 | 18 | echo 'a' >a |
|
14 | 19 | hg add a |
|
15 | 20 | hg branch a |
|
16 |
hg commit - |
|
|
17 |
|
|
|
21 | hg commit -m "Adding a branch" | |
|
22 | heads | |
|
18 | 23 | echo '-------' |
|
19 |
|
|
|
24 | heads . | |
|
20 | 25 | |
|
21 | 26 | echo '=======' |
|
22 | 27 | hg update -C 0 |
|
23 | 28 | echo 'b' >b |
|
24 | 29 | hg add b |
|
25 | 30 | hg branch b |
|
26 |
hg commit - |
|
|
27 |
|
|
|
31 | hg commit -m "Adding b branch" | |
|
32 | heads | |
|
28 | 33 | echo '-------' |
|
29 |
|
|
|
34 | heads . | |
|
30 | 35 | |
|
31 | 36 | echo '=======' |
|
32 | 37 | echo 'bh1' >bh1 |
|
33 | 38 | hg add bh1 |
|
34 |
hg commit - |
|
|
35 |
|
|
|
39 | hg commit -m "Adding b branch head 1" | |
|
40 | heads | |
|
36 | 41 | echo '-------' |
|
37 |
|
|
|
42 | heads . | |
|
38 | 43 | |
|
39 | 44 | echo '=======' |
|
40 | 45 | hg update -C 2 |
|
41 | 46 | echo 'bh2' >bh2 |
|
42 | 47 | hg add bh2 |
|
43 |
hg commit - |
|
|
44 |
|
|
|
48 | hg commit -m "Adding b branch head 2" | |
|
49 | heads | |
|
45 | 50 | echo '-------' |
|
46 |
|
|
|
51 | heads . | |
|
47 | 52 | |
|
48 | 53 | echo '=======' |
|
49 | 54 | hg update -C 2 |
|
50 | 55 | echo 'bh3' >bh3 |
|
51 | 56 | hg add bh3 |
|
52 |
hg commit - |
|
|
53 |
|
|
|
57 | hg commit -m "Adding b branch head 3" | |
|
58 | heads | |
|
54 | 59 | echo '-------' |
|
55 |
|
|
|
60 | heads . | |
|
56 | 61 | |
|
57 | 62 | echo '=======' |
|
58 | 63 | hg merge 4 |
|
59 |
hg commit - |
|
|
60 |
|
|
|
64 | hg commit -m "Merging b branch head 2 and b branch head 3" | |
|
65 | heads | |
|
61 | 66 | echo '-------' |
|
62 |
|
|
|
67 | heads . | |
|
63 | 68 | |
|
64 | 69 | echo '=======' |
|
65 | 70 | echo 'c' >c |
|
66 | 71 | hg add c |
|
67 | 72 | hg branch c |
|
68 |
hg commit - |
|
|
69 |
|
|
|
73 | hg commit -m "Adding c branch" | |
|
74 | heads | |
|
70 | 75 | echo '-------' |
|
71 |
|
|
|
76 | heads . | |
|
72 | 77 | |
|
73 | 78 | echo '=======' |
|
74 |
|
|
|
79 | heads -r 3 . | |
|
75 | 80 | echo $? |
|
76 | 81 | echo '-------' |
|
77 |
|
|
|
82 | heads -r 2 . | |
|
78 | 83 | echo $? |
|
79 | 84 | echo '-------' |
|
80 | 85 | hg update -C 4 |
|
81 | 86 | echo $? |
|
82 | 87 | echo '-------' |
|
83 |
|
|
|
88 | heads -r 3 . | |
|
84 | 89 | echo $? |
|
85 | 90 | echo '-------' |
|
86 |
|
|
|
91 | heads -r 2 . | |
|
87 | 92 | echo $? |
|
88 | 93 | echo '-------' |
|
89 |
|
|
|
94 | heads -r 7 . | |
|
90 | 95 | echo $? |
|
91 | 96 | |
|
92 | 97 | echo '=======' |
|
93 | 98 | for i in 0 1 2 3 4 5 6 7; do |
|
94 | 99 | hg update -C "$i" |
|
95 |
h |
|
|
100 | heads | |
|
96 | 101 | echo '-------' |
|
97 |
h |
|
|
102 | heads . | |
|
98 | 103 | echo '-------' |
|
99 | 104 | done |
|
100 | 105 | |
|
101 | 106 | echo '=======' |
|
102 | 107 | for i in a b c z; do |
|
103 |
h |
|
|
108 | heads "$i" | |
|
104 | 109 | echo '-------' |
|
105 | 110 | done |
|
106 | 111 | |
|
107 | 112 | echo '=======' |
|
108 |
|
|
|
113 | heads 0 1 2 3 4 5 6 7 |
This diff has been collapsed as it changes many lines, (619 lines changed) Show them Hide them | |||
@@ -1,608 +1,151 | |||
|
1 | changeset: 0:19709c5a4e75 | |
|
2 | tag: tip | |
|
3 | user: test | |
|
4 | date: Thu Jan 01 00:00:00 1970 +0000 | |
|
5 | summary: Adding root node | |
|
6 | ||
|
1 | 0: Adding root node | |
|
7 | 2 | ------- |
|
8 | changeset: 0:19709c5a4e75 | |
|
9 | tag: tip | |
|
10 | user: test | |
|
11 | date: Thu Jan 01 00:00:00 1970 +0000 | |
|
12 | summary: Adding root node | |
|
13 | ||
|
3 | 0: Adding root node | |
|
14 | 4 | ======= |
|
15 | 5 | marked working directory as branch a |
|
16 | changeset: 1:dd6b440dd85a | |
|
17 | branch: a | |
|
18 | tag: tip | |
|
19 | user: test | |
|
20 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
21 | summary: Adding a branch | |
|
22 | ||
|
6 | 1: Adding a branch | |
|
23 | 7 | ------- |
|
24 | changeset: 1:dd6b440dd85a | |
|
25 | branch: a | |
|
26 | tag: tip | |
|
27 | user: test | |
|
28 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
29 | summary: Adding a branch | |
|
30 | ||
|
8 | 1: Adding a branch | |
|
31 | 9 | ======= |
|
32 | 10 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
33 | 11 | marked working directory as branch b |
|
34 | changeset: 2:ac22033332d1 | |
|
35 | branch: b | |
|
36 | tag: tip | |
|
37 | parent: 0:19709c5a4e75 | |
|
38 | user: test | |
|
39 | date: Thu Jan 01 00:00:02 1970 +0000 | |
|
40 | summary: Adding b branch | |
|
41 | ||
|
42 | changeset: 1:dd6b440dd85a | |
|
43 | branch: a | |
|
44 | user: test | |
|
45 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
46 | summary: Adding a branch | |
|
47 | ||
|
12 | 2: Adding b branch | |
|
13 | 1: Adding a branch | |
|
48 | 14 | ------- |
|
49 | changeset: 2:ac22033332d1 | |
|
50 | branch: b | |
|
51 | tag: tip | |
|
52 | parent: 0:19709c5a4e75 | |
|
53 | user: test | |
|
54 | date: Thu Jan 01 00:00:02 1970 +0000 | |
|
55 | summary: Adding b branch | |
|
56 | ||
|
15 | 2: Adding b branch | |
|
57 | 16 | ======= |
|
58 | changeset: 3:aee39cd168d0 | |
|
59 | branch: b | |
|
60 | tag: tip | |
|
61 | user: test | |
|
62 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
63 | summary: Adding b branch head 1 | |
|
64 | ||
|
65 | changeset: 1:dd6b440dd85a | |
|
66 | branch: a | |
|
67 | user: test | |
|
68 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
69 | summary: Adding a branch | |
|
70 | ||
|
17 | 3: Adding b branch head 1 | |
|
18 | 1: Adding a branch | |
|
71 | 19 | ------- |
|
72 | changeset: 3:aee39cd168d0 | |
|
73 | branch: b | |
|
74 | tag: tip | |
|
75 | user: test | |
|
76 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
77 | summary: Adding b branch head 1 | |
|
78 | ||
|
20 | 3: Adding b branch head 1 | |
|
79 | 21 | ======= |
|
80 | 22 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
81 | changeset: 4:22df7444f7c1 | |
|
82 | branch: b | |
|
83 | tag: tip | |
|
84 | parent: 2:ac22033332d1 | |
|
85 | user: test | |
|
86 | date: Thu Jan 01 00:00:04 1970 +0000 | |
|
87 | summary: Adding b branch head 2 | |
|
88 | ||
|
89 | changeset: 3:aee39cd168d0 | |
|
90 | branch: b | |
|
91 | user: test | |
|
92 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
93 | summary: Adding b branch head 1 | |
|
94 | ||
|
95 | changeset: 1:dd6b440dd85a | |
|
96 | branch: a | |
|
97 | user: test | |
|
98 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
99 | summary: Adding a branch | |
|
100 | ||
|
23 | 4: Adding b branch head 2 | |
|
24 | 3: Adding b branch head 1 | |
|
25 | 1: Adding a branch | |
|
101 | 26 | ------- |
|
102 | changeset: 4:22df7444f7c1 | |
|
103 | branch: b | |
|
104 | tag: tip | |
|
105 | parent: 2:ac22033332d1 | |
|
106 | user: test | |
|
107 | date: Thu Jan 01 00:00:04 1970 +0000 | |
|
108 | summary: Adding b branch head 2 | |
|
109 | ||
|
110 | changeset: 3:aee39cd168d0 | |
|
111 | branch: b | |
|
112 | user: test | |
|
113 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
114 | summary: Adding b branch head 1 | |
|
115 | ||
|
27 | 4: Adding b branch head 2 | |
|
28 | 3: Adding b branch head 1 | |
|
116 | 29 | ======= |
|
117 | 30 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
118 | changeset: 5:0d57af4f9583 | |
|
119 | branch: b | |
|
120 | tag: tip | |
|
121 | parent: 2:ac22033332d1 | |
|
122 | user: test | |
|
123 | date: Thu Jan 01 00:00:05 1970 +0000 | |
|
124 | summary: Adding b branch head 3 | |
|
125 | ||
|
126 | changeset: 4:22df7444f7c1 | |
|
127 | branch: b | |
|
128 | parent: 2:ac22033332d1 | |
|
129 | user: test | |
|
130 | date: Thu Jan 01 00:00:04 1970 +0000 | |
|
131 | summary: Adding b branch head 2 | |
|
132 | ||
|
133 | changeset: 3:aee39cd168d0 | |
|
134 | branch: b | |
|
135 | user: test | |
|
136 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
137 | summary: Adding b branch head 1 | |
|
138 | ||
|
139 | changeset: 1:dd6b440dd85a | |
|
140 | branch: a | |
|
141 | user: test | |
|
142 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
143 | summary: Adding a branch | |
|
144 | ||
|
31 | 5: Adding b branch head 3 | |
|
32 | 4: Adding b branch head 2 | |
|
33 | 3: Adding b branch head 1 | |
|
34 | 1: Adding a branch | |
|
145 | 35 | ------- |
|
146 | changeset: 5:0d57af4f9583 | |
|
147 | branch: b | |
|
148 | tag: tip | |
|
149 | parent: 2:ac22033332d1 | |
|
150 | user: test | |
|
151 | date: Thu Jan 01 00:00:05 1970 +0000 | |
|
152 | summary: Adding b branch head 3 | |
|
153 | ||
|
154 | changeset: 4:22df7444f7c1 | |
|
155 | branch: b | |
|
156 | parent: 2:ac22033332d1 | |
|
157 | user: test | |
|
158 | date: Thu Jan 01 00:00:04 1970 +0000 | |
|
159 | summary: Adding b branch head 2 | |
|
160 | ||
|
161 | changeset: 3:aee39cd168d0 | |
|
162 | branch: b | |
|
163 | user: test | |
|
164 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
165 | summary: Adding b branch head 1 | |
|
166 | ||
|
36 | 5: Adding b branch head 3 | |
|
37 | 4: Adding b branch head 2 | |
|
38 | 3: Adding b branch head 1 | |
|
167 | 39 | ======= |
|
168 | 40 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
169 | 41 | (branch merge, don't forget to commit) |
|
170 | changeset: 6:00432327d822 | |
|
171 | branch: b | |
|
172 | tag: tip | |
|
173 | parent: 5:0d57af4f9583 | |
|
174 | parent: 4:22df7444f7c1 | |
|
175 | user: test | |
|
176 | date: Thu Jan 01 00:00:06 1970 +0000 | |
|
177 | summary: Merging b branch head 2 and b branch head 3 | |
|
178 | ||
|
179 | changeset: 3:aee39cd168d0 | |
|
180 | branch: b | |
|
181 | user: test | |
|
182 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
183 | summary: Adding b branch head 1 | |
|
184 | ||
|
185 | changeset: 1:dd6b440dd85a | |
|
186 | branch: a | |
|
187 | user: test | |
|
188 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
189 | summary: Adding a branch | |
|
190 | ||
|
42 | 6: Merging b branch head 2 and b branch head 3 | |
|
43 | 3: Adding b branch head 1 | |
|
44 | 1: Adding a branch | |
|
191 | 45 | ------- |
|
192 | changeset: 6:00432327d822 | |
|
193 | branch: b | |
|
194 | tag: tip | |
|
195 | parent: 5:0d57af4f9583 | |
|
196 | parent: 4:22df7444f7c1 | |
|
197 | user: test | |
|
198 | date: Thu Jan 01 00:00:06 1970 +0000 | |
|
199 | summary: Merging b branch head 2 and b branch head 3 | |
|
200 | ||
|
201 | changeset: 3:aee39cd168d0 | |
|
202 | branch: b | |
|
203 | user: test | |
|
204 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
205 | summary: Adding b branch head 1 | |
|
206 | ||
|
46 | 6: Merging b branch head 2 and b branch head 3 | |
|
47 | 3: Adding b branch head 1 | |
|
207 | 48 | ======= |
|
208 | 49 | marked working directory as branch c |
|
209 | changeset: 7:9fb091bb9835 | |
|
210 | branch: c | |
|
211 | tag: tip | |
|
212 | user: test | |
|
213 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
214 | summary: Adding c branch | |
|
215 | ||
|
216 | changeset: 3:aee39cd168d0 | |
|
217 | branch: b | |
|
218 | user: test | |
|
219 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
220 | summary: Adding b branch head 1 | |
|
221 | ||
|
222 | changeset: 1:dd6b440dd85a | |
|
223 | branch: a | |
|
224 | user: test | |
|
225 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
226 | summary: Adding a branch | |
|
227 | ||
|
50 | 7: Adding c branch | |
|
51 | 3: Adding b branch head 1 | |
|
52 | 1: Adding a branch | |
|
228 | 53 | ------- |
|
229 | changeset: 7:9fb091bb9835 | |
|
230 | branch: c | |
|
231 | tag: tip | |
|
232 | user: test | |
|
233 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
234 | summary: Adding c branch | |
|
235 | ||
|
54 | 7: Adding c branch | |
|
236 | 55 | ======= |
|
237 | 56 | no changes on branch c containing . are reachable from 3 |
|
238 | 57 | 1 |
|
239 | 58 | ------- |
|
240 | changeset: 7:9fb091bb9835 | |
|
241 | branch: c | |
|
242 | tag: tip | |
|
243 | user: test | |
|
244 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
245 | summary: Adding c branch | |
|
246 | ||
|
59 | 7: Adding c branch | |
|
247 | 60 | 0 |
|
248 | 61 | ------- |
|
249 | 62 | 0 files updated, 0 files merged, 2 files removed, 0 files unresolved |
|
250 | 63 | 0 |
|
251 | 64 | ------- |
|
252 | changeset: 3:aee39cd168d0 | |
|
253 | branch: b | |
|
254 | user: test | |
|
255 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
256 | summary: Adding b branch head 1 | |
|
257 | ||
|
65 | 3: Adding b branch head 1 | |
|
258 | 66 | 0 |
|
259 | 67 | ------- |
|
260 | changeset: 3:aee39cd168d0 | |
|
261 | branch: b | |
|
262 | user: test | |
|
263 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
264 | summary: Adding b branch head 1 | |
|
265 | ||
|
266 | changeset: 6:00432327d822 | |
|
267 | branch: b | |
|
268 | parent: 5:0d57af4f9583 | |
|
269 | parent: 4:22df7444f7c1 | |
|
270 | user: test | |
|
271 | date: Thu Jan 01 00:00:06 1970 +0000 | |
|
272 | summary: Merging b branch head 2 and b branch head 3 | |
|
273 | ||
|
68 | 3: Adding b branch head 1 | |
|
69 | 6: Merging b branch head 2 and b branch head 3 | |
|
274 | 70 | 0 |
|
275 | 71 | ------- |
|
276 | 72 | no changes on branch b containing . are reachable from 7 |
|
277 | 73 | 1 |
|
278 | 74 | ======= |
|
279 | 75 | 0 files updated, 0 files merged, 2 files removed, 0 files unresolved |
|
280 | changeset: 7:9fb091bb9835 | |
|
281 | branch: c | |
|
282 | tag: tip | |
|
283 | user: test | |
|
284 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
285 | summary: Adding c branch | |
|
286 | ||
|
287 | changeset: 3:aee39cd168d0 | |
|
288 | branch: b | |
|
289 | user: test | |
|
290 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
291 | summary: Adding b branch head 1 | |
|
292 | ||
|
293 | changeset: 1:dd6b440dd85a | |
|
294 | branch: a | |
|
295 | user: test | |
|
296 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
297 | summary: Adding a branch | |
|
298 | ||
|
76 | 7: Adding c branch | |
|
77 | 3: Adding b branch head 1 | |
|
78 | 1: Adding a branch | |
|
299 | 79 | ------- |
|
300 | changeset: 0:19709c5a4e75 | |
|
301 | user: test | |
|
302 | date: Thu Jan 01 00:00:00 1970 +0000 | |
|
303 | summary: Adding root node | |
|
304 | ||
|
80 | 0: Adding root node | |
|
305 | 81 | ------- |
|
306 | 82 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
307 | changeset: 7:9fb091bb9835 | |
|
308 | branch: c | |
|
309 | tag: tip | |
|
310 | user: test | |
|
311 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
312 | summary: Adding c branch | |
|
313 | ||
|
314 | changeset: 3:aee39cd168d0 | |
|
315 | branch: b | |
|
316 | user: test | |
|
317 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
318 | summary: Adding b branch head 1 | |
|
319 | ||
|
320 | changeset: 1:dd6b440dd85a | |
|
321 | branch: a | |
|
322 | user: test | |
|
323 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
324 | summary: Adding a branch | |
|
325 | ||
|
83 | 7: Adding c branch | |
|
84 | 3: Adding b branch head 1 | |
|
85 | 1: Adding a branch | |
|
326 | 86 | ------- |
|
327 | changeset: 1:dd6b440dd85a | |
|
328 | branch: a | |
|
329 | user: test | |
|
330 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
331 | summary: Adding a branch | |
|
332 | ||
|
87 | 1: Adding a branch | |
|
333 | 88 | ------- |
|
334 | 89 | 1 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
335 | changeset: 7:9fb091bb9835 | |
|
336 | branch: c | |
|
337 | tag: tip | |
|
338 | user: test | |
|
339 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
340 | summary: Adding c branch | |
|
341 | ||
|
342 | changeset: 3:aee39cd168d0 | |
|
343 | branch: b | |
|
344 | user: test | |
|
345 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
346 | summary: Adding b branch head 1 | |
|
347 | ||
|
348 | changeset: 1:dd6b440dd85a | |
|
349 | branch: a | |
|
350 | user: test | |
|
351 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
352 | summary: Adding a branch | |
|
353 | ||
|
90 | 7: Adding c branch | |
|
91 | 3: Adding b branch head 1 | |
|
92 | 1: Adding a branch | |
|
354 | 93 | ------- |
|
355 | changeset: 6:00432327d822 | |
|
356 | branch: b | |
|
357 | parent: 5:0d57af4f9583 | |
|
358 | parent: 4:22df7444f7c1 | |
|
359 | user: test | |
|
360 | date: Thu Jan 01 00:00:06 1970 +0000 | |
|
361 | summary: Merging b branch head 2 and b branch head 3 | |
|
362 | ||
|
363 | changeset: 3:aee39cd168d0 | |
|
364 | branch: b | |
|
365 | user: test | |
|
366 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
367 | summary: Adding b branch head 1 | |
|
368 | ||
|
94 | 6: Merging b branch head 2 and b branch head 3 | |
|
95 | 3: Adding b branch head 1 | |
|
369 | 96 | ------- |
|
370 | 97 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
371 | changeset: 7:9fb091bb9835 | |
|
372 | branch: c | |
|
373 | tag: tip | |
|
374 | user: test | |
|
375 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
376 | summary: Adding c branch | |
|
377 | ||
|
378 | changeset: 3:aee39cd168d0 | |
|
379 | branch: b | |
|
380 | user: test | |
|
381 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
382 | summary: Adding b branch head 1 | |
|
383 | ||
|
384 | changeset: 1:dd6b440dd85a | |
|
385 | branch: a | |
|
386 | user: test | |
|
387 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
388 | summary: Adding a branch | |
|
389 | ||
|
98 | 7: Adding c branch | |
|
99 | 3: Adding b branch head 1 | |
|
100 | 1: Adding a branch | |
|
390 | 101 | ------- |
|
391 | changeset: 6:00432327d822 | |
|
392 | branch: b | |
|
393 | parent: 5:0d57af4f9583 | |
|
394 | parent: 4:22df7444f7c1 | |
|
395 | user: test | |
|
396 | date: Thu Jan 01 00:00:06 1970 +0000 | |
|
397 | summary: Merging b branch head 2 and b branch head 3 | |
|
398 | ||
|
399 | changeset: 3:aee39cd168d0 | |
|
400 | branch: b | |
|
401 | user: test | |
|
402 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
403 | summary: Adding b branch head 1 | |
|
404 | ||
|
102 | 6: Merging b branch head 2 and b branch head 3 | |
|
103 | 3: Adding b branch head 1 | |
|
405 | 104 | ------- |
|
406 | 105 | 1 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
407 | changeset: 7:9fb091bb9835 | |
|
408 | branch: c | |
|
409 | tag: tip | |
|
410 | user: test | |
|
411 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
412 | summary: Adding c branch | |
|
413 | ||
|
414 | changeset: 3:aee39cd168d0 | |
|
415 | branch: b | |
|
416 | user: test | |
|
417 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
418 | summary: Adding b branch head 1 | |
|
419 | ||
|
420 | changeset: 1:dd6b440dd85a | |
|
421 | branch: a | |
|
422 | user: test | |
|
423 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
424 | summary: Adding a branch | |
|
425 | ||
|
106 | 7: Adding c branch | |
|
107 | 3: Adding b branch head 1 | |
|
108 | 1: Adding a branch | |
|
426 | 109 | ------- |
|
427 | changeset: 6:00432327d822 | |
|
428 | branch: b | |
|
429 | parent: 5:0d57af4f9583 | |
|
430 | parent: 4:22df7444f7c1 | |
|
431 | user: test | |
|
432 | date: Thu Jan 01 00:00:06 1970 +0000 | |
|
433 | summary: Merging b branch head 2 and b branch head 3 | |
|
434 | ||
|
435 | changeset: 3:aee39cd168d0 | |
|
436 | branch: b | |
|
437 | user: test | |
|
438 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
439 | summary: Adding b branch head 1 | |
|
440 | ||
|
110 | 6: Merging b branch head 2 and b branch head 3 | |
|
111 | 3: Adding b branch head 1 | |
|
441 | 112 | ------- |
|
442 | 113 | 1 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
443 | changeset: 7:9fb091bb9835 | |
|
444 | branch: c | |
|
445 | tag: tip | |
|
446 | user: test | |
|
447 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
448 | summary: Adding c branch | |
|
449 | ||
|
450 | changeset: 3:aee39cd168d0 | |
|
451 | branch: b | |
|
452 | user: test | |
|
453 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
454 | summary: Adding b branch head 1 | |
|
455 | ||
|
456 | changeset: 1:dd6b440dd85a | |
|
457 | branch: a | |
|
458 | user: test | |
|
459 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
460 | summary: Adding a branch | |
|
461 | ||
|
114 | 7: Adding c branch | |
|
115 | 3: Adding b branch head 1 | |
|
116 | 1: Adding a branch | |
|
462 | 117 | ------- |
|
463 | changeset: 6:00432327d822 | |
|
464 | branch: b | |
|
465 | parent: 5:0d57af4f9583 | |
|
466 | parent: 4:22df7444f7c1 | |
|
467 | user: test | |
|
468 | date: Thu Jan 01 00:00:06 1970 +0000 | |
|
469 | summary: Merging b branch head 2 and b branch head 3 | |
|
470 | ||
|
471 | changeset: 3:aee39cd168d0 | |
|
472 | branch: b | |
|
473 | user: test | |
|
474 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
475 | summary: Adding b branch head 1 | |
|
476 | ||
|
118 | 6: Merging b branch head 2 and b branch head 3 | |
|
119 | 3: Adding b branch head 1 | |
|
477 | 120 | ------- |
|
478 | 121 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
479 | changeset: 7:9fb091bb9835 | |
|
480 | branch: c | |
|
481 | tag: tip | |
|
482 | user: test | |
|
483 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
484 | summary: Adding c branch | |
|
485 | ||
|
486 | changeset: 3:aee39cd168d0 | |
|
487 | branch: b | |
|
488 | user: test | |
|
489 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
490 | summary: Adding b branch head 1 | |
|
491 | ||
|
492 | changeset: 1:dd6b440dd85a | |
|
493 | branch: a | |
|
494 | user: test | |
|
495 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
496 | summary: Adding a branch | |
|
497 | ||
|
122 | 7: Adding c branch | |
|
123 | 3: Adding b branch head 1 | |
|
124 | 1: Adding a branch | |
|
498 | 125 | ------- |
|
499 | changeset: 6:00432327d822 | |
|
500 | branch: b | |
|
501 | parent: 5:0d57af4f9583 | |
|
502 | parent: 4:22df7444f7c1 | |
|
503 | user: test | |
|
504 | date: Thu Jan 01 00:00:06 1970 +0000 | |
|
505 | summary: Merging b branch head 2 and b branch head 3 | |
|
506 | ||
|
507 | changeset: 3:aee39cd168d0 | |
|
508 | branch: b | |
|
509 | user: test | |
|
510 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
511 | summary: Adding b branch head 1 | |
|
512 | ||
|
126 | 6: Merging b branch head 2 and b branch head 3 | |
|
127 | 3: Adding b branch head 1 | |
|
513 | 128 | ------- |
|
514 | 129 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
515 | changeset: 7:9fb091bb9835 | |
|
516 | branch: c | |
|
517 | tag: tip | |
|
518 | user: test | |
|
519 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
520 | summary: Adding c branch | |
|
521 | ||
|
522 | changeset: 3:aee39cd168d0 | |
|
523 | branch: b | |
|
524 | user: test | |
|
525 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
526 | summary: Adding b branch head 1 | |
|
527 | ||
|
528 | changeset: 1:dd6b440dd85a | |
|
529 | branch: a | |
|
530 | user: test | |
|
531 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
532 | summary: Adding a branch | |
|
533 | ||
|
130 | 7: Adding c branch | |
|
131 | 3: Adding b branch head 1 | |
|
132 | 1: Adding a branch | |
|
534 | 133 | ------- |
|
535 | changeset: 7:9fb091bb9835 | |
|
536 | branch: c | |
|
537 | tag: tip | |
|
538 | user: test | |
|
539 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
540 | summary: Adding c branch | |
|
541 | ||
|
134 | 7: Adding c branch | |
|
542 | 135 | ------- |
|
543 | 136 | ======= |
|
544 | changeset: 1:dd6b440dd85a | |
|
545 | branch: a | |
|
546 | user: test | |
|
547 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
548 | summary: Adding a branch | |
|
549 | ||
|
137 | 1: Adding a branch | |
|
550 | 138 | ------- |
|
551 | changeset: 6:00432327d822 | |
|
552 | branch: b | |
|
553 | parent: 5:0d57af4f9583 | |
|
554 | parent: 4:22df7444f7c1 | |
|
555 | user: test | |
|
556 | date: Thu Jan 01 00:00:06 1970 +0000 | |
|
557 | summary: Merging b branch head 2 and b branch head 3 | |
|
558 | ||
|
559 | changeset: 3:aee39cd168d0 | |
|
560 | branch: b | |
|
561 | user: test | |
|
562 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
563 | summary: Adding b branch head 1 | |
|
564 | ||
|
139 | 6: Merging b branch head 2 and b branch head 3 | |
|
140 | 3: Adding b branch head 1 | |
|
565 | 141 | ------- |
|
566 | changeset: 7:9fb091bb9835 | |
|
567 | branch: c | |
|
568 | tag: tip | |
|
569 | user: test | |
|
570 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
571 | summary: Adding c branch | |
|
572 | ||
|
142 | 7: Adding c branch | |
|
573 | 143 | ------- |
|
574 | 144 | abort: unknown revision 'z'! |
|
575 | 145 | ------- |
|
576 | 146 | ======= |
|
577 | changeset: 0:19709c5a4e75 | |
|
578 | user: test | |
|
579 | date: Thu Jan 01 00:00:00 1970 +0000 | |
|
580 | summary: Adding root node | |
|
581 | ||
|
582 | changeset: 1:dd6b440dd85a | |
|
583 | branch: a | |
|
584 | user: test | |
|
585 | date: Thu Jan 01 00:00:01 1970 +0000 | |
|
586 | summary: Adding a branch | |
|
587 | ||
|
588 | changeset: 6:00432327d822 | |
|
589 | branch: b | |
|
590 | parent: 5:0d57af4f9583 | |
|
591 | parent: 4:22df7444f7c1 | |
|
592 | user: test | |
|
593 | date: Thu Jan 01 00:00:06 1970 +0000 | |
|
594 | summary: Merging b branch head 2 and b branch head 3 | |
|
595 | ||
|
596 | changeset: 3:aee39cd168d0 | |
|
597 | branch: b | |
|
598 | user: test | |
|
599 | date: Thu Jan 01 00:00:03 1970 +0000 | |
|
600 | summary: Adding b branch head 1 | |
|
601 | ||
|
602 | changeset: 7:9fb091bb9835 | |
|
603 | branch: c | |
|
604 | tag: tip | |
|
605 | user: test | |
|
606 | date: Thu Jan 01 00:00:07 1970 +0000 | |
|
607 | summary: Adding c branch | |
|
608 | ||
|
147 | 0: Adding root node | |
|
148 | 1: Adding a branch | |
|
149 | 6: Merging b branch head 2 and b branch head 3 | |
|
150 | 3: Adding b branch head 1 | |
|
151 | 7: Adding c branch |
General Comments 0
You need to be logged in to leave comments.
Login now