##// END OF EJS Templates
bundlerepo: test exposing inconsistency of parsed and internal name (issue #821)
Peter Arrenbrecht -
r6128:b3286a92 default
parent child Browse files
Show More
@@ -1,117 +1,124 b''
1 #!/bin/sh
1 #!/bin/sh
2
2
3 cp "$TESTDIR"/printenv.py .
3 cp "$TESTDIR"/printenv.py .
4
4
5 echo "====== Setting up test"
5 echo "====== Setting up test"
6 hg init test
6 hg init test
7 cd test
7 cd test
8 echo 0 > afile
8 echo 0 > afile
9 hg add afile
9 hg add afile
10 hg commit -m "0.0" -d "1000000 0"
10 hg commit -m "0.0" -d "1000000 0"
11 echo 1 >> afile
11 echo 1 >> afile
12 hg commit -m "0.1" -d "1000000 0"
12 hg commit -m "0.1" -d "1000000 0"
13 echo 2 >> afile
13 echo 2 >> afile
14 hg commit -m "0.2" -d "1000000 0"
14 hg commit -m "0.2" -d "1000000 0"
15 echo 3 >> afile
15 echo 3 >> afile
16 hg commit -m "0.3" -d "1000000 0"
16 hg commit -m "0.3" -d "1000000 0"
17 hg update -C 0
17 hg update -C 0
18 echo 1 >> afile
18 echo 1 >> afile
19 hg commit -m "1.1" -d "1000000 0"
19 hg commit -m "1.1" -d "1000000 0"
20 echo 2 >> afile
20 echo 2 >> afile
21 hg commit -m "1.2" -d "1000000 0"
21 hg commit -m "1.2" -d "1000000 0"
22 echo "a line" > fred
22 echo "a line" > fred
23 echo 3 >> afile
23 echo 3 >> afile
24 hg add fred
24 hg add fred
25 hg commit -m "1.3" -d "1000000 0"
25 hg commit -m "1.3" -d "1000000 0"
26 hg mv afile adifferentfile
26 hg mv afile adifferentfile
27 hg commit -m "1.3m" -d "1000000 0"
27 hg commit -m "1.3m" -d "1000000 0"
28 hg update -C 3
28 hg update -C 3
29 hg mv afile anotherfile
29 hg mv afile anotherfile
30 hg commit -m "0.3m" -d "1000000 0"
30 hg commit -m "0.3m" -d "1000000 0"
31 hg verify
31 hg verify
32 cd ..
32 cd ..
33 hg init empty
33 hg init empty
34
34
35 echo "====== Bundle test to full.hg"
35 echo "====== Bundle test to full.hg"
36 hg -R test bundle full.hg empty
36 hg -R test bundle full.hg empty
37 echo "====== Unbundle full.hg in test"
37 echo "====== Unbundle full.hg in test"
38 hg -R test unbundle full.hg
38 hg -R test unbundle full.hg
39 echo "====== Verify empty"
39 echo "====== Verify empty"
40 hg -R empty heads
40 hg -R empty heads
41 hg -R empty verify
41 hg -R empty verify
42
42
43 echo "====== Pull full.hg into test (using --cwd)"
43 echo "====== Pull full.hg into test (using --cwd)"
44 hg --cwd test pull ../full.hg
44 hg --cwd test pull ../full.hg
45 echo "====== Pull full.hg into empty (using --cwd)"
45 echo "====== Pull full.hg into empty (using --cwd)"
46 hg --cwd empty pull ../full.hg
46 hg --cwd empty pull ../full.hg
47 echo "====== Rollback empty"
47 echo "====== Rollback empty"
48 hg -R empty rollback
48 hg -R empty rollback
49 echo "====== Pull full.hg into empty again (using --cwd)"
49 echo "====== Pull full.hg into empty again (using --cwd)"
50 hg --cwd empty pull ../full.hg
50 hg --cwd empty pull ../full.hg
51
51
52 echo "====== Pull full.hg into test (using -R)"
52 echo "====== Pull full.hg into test (using -R)"
53 hg -R test pull full.hg
53 hg -R test pull full.hg
54 echo "====== Pull full.hg into empty (using -R)"
54 echo "====== Pull full.hg into empty (using -R)"
55 hg -R empty pull full.hg
55 hg -R empty pull full.hg
56 echo "====== Rollback empty"
56 echo "====== Rollback empty"
57 hg -R empty rollback
57 hg -R empty rollback
58 echo "====== Pull full.hg into empty again (using -R)"
58 echo "====== Pull full.hg into empty again (using -R)"
59 hg -R empty pull full.hg
59 hg -R empty pull full.hg
60
60
61 echo "====== Log -R full.hg in fresh empty"
61 echo "====== Log -R full.hg in fresh empty"
62 rm -r empty
62 rm -r empty
63 hg init empty
63 hg init empty
64 cd empty
64 cd empty
65 hg -R bundle://../full.hg log
65 hg -R bundle://../full.hg log
66
66
67 echo "====== Pull ../full.hg into empty (with hook)"
67 echo "====== Pull ../full.hg into empty (with hook)"
68 echo '[hooks]' >> .hg/hgrc
68 echo '[hooks]' >> .hg/hgrc
69 echo 'changegroup = python ../printenv.py changegroup' >> .hg/hgrc
69 echo 'changegroup = python ../printenv.py changegroup' >> .hg/hgrc
70 #doesn't work (yet ?)
70 #doesn't work (yet ?)
71 #hg -R bundle://../full.hg verify
71 #hg -R bundle://../full.hg verify
72 hg pull bundle://../full.hg
72 hg pull bundle://../full.hg
73 echo "====== Rollback empty"
74 hg rollback
73 cd ..
75 cd ..
76 echo "====== Log -R bundle:empty+full.hg"
77 hg -R bundle:empty+full.hg log --template="{rev} "
78 echo ""
79 echo "====== Pull full.hg into empty again (using -R; with hook)"
80 hg -R empty pull full.hg
74
81
75 echo "====== Create partial clones"
82 echo "====== Create partial clones"
76 rm -r empty
83 rm -r empty
77 hg init empty
84 hg init empty
78 hg clone -r 3 test partial
85 hg clone -r 3 test partial
79 hg clone partial partial2
86 hg clone partial partial2
80 cd partial
87 cd partial
81 echo "====== Log -R full.hg in partial"
88 echo "====== Log -R full.hg in partial"
82 hg -R bundle://../full.hg log
89 hg -R bundle://../full.hg log
83 echo "====== Incoming full.hg in partial"
90 echo "====== Incoming full.hg in partial"
84 hg incoming bundle://../full.hg
91 hg incoming bundle://../full.hg
85 echo "====== Outgoing -R full.hg vs partial2 in partial"
92 echo "====== Outgoing -R full.hg vs partial2 in partial"
86 hg -R bundle://../full.hg outgoing ../partial2
93 hg -R bundle://../full.hg outgoing ../partial2
87 echo "====== Outgoing -R does-not-exist.hg vs partial2 in partial"
94 echo "====== Outgoing -R does-not-exist.hg vs partial2 in partial"
88 hg -R bundle://../does-not-exist.hg outgoing ../partial2
95 hg -R bundle://../does-not-exist.hg outgoing ../partial2
89 cd ..
96 cd ..
90
97
91 # test for http://www.selenic.com/mercurial/bts/issue216
98 # test for http://www.selenic.com/mercurial/bts/issue216
92 echo "====== Unbundle incremental bundles into fresh empty in one go"
99 echo "====== Unbundle incremental bundles into fresh empty in one go"
93 rm -r empty
100 rm -r empty
94 hg init empty
101 hg init empty
95 hg -R test bundle --base null -r 0 ../0.hg
102 hg -R test bundle --base null -r 0 ../0.hg
96 hg -R test bundle --base 0 -r 1 ../1.hg
103 hg -R test bundle --base 0 -r 1 ../1.hg
97 hg -R empty unbundle -u ../0.hg ../1.hg
104 hg -R empty unbundle -u ../0.hg ../1.hg
98
105
99 # test for 540d1059c802
106 # test for 540d1059c802
100 echo "====== test for 540d1059c802"
107 echo "====== test for 540d1059c802"
101 hg init orig
108 hg init orig
102 cd orig
109 cd orig
103 echo foo > foo
110 echo foo > foo
104 hg add foo
111 hg add foo
105 hg ci -m 'add foo' -d '0 0'
112 hg ci -m 'add foo' -d '0 0'
106
113
107 hg clone . ../copy
114 hg clone . ../copy
108 hg tag -d '0 0' foo
115 hg tag -d '0 0' foo
109
116
110 cd ../copy
117 cd ../copy
111 echo >> foo
118 echo >> foo
112 hg ci -m 'change foo' -d '0 0'
119 hg ci -m 'change foo' -d '0 0'
113 hg bundle ../bundle.hg ../orig
120 hg bundle ../bundle.hg ../orig
114
121
115 cd ../orig
122 cd ../orig
116 hg incoming ../bundle.hg
123 hg incoming ../bundle.hg
117 cd ..
124 cd ..
@@ -1,272 +1,285 b''
1 ====== Setting up test
1 ====== Setting up test
2 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
2 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
3 1 files updated, 0 files merged, 2 files removed, 0 files unresolved
3 1 files updated, 0 files merged, 2 files removed, 0 files unresolved
4 checking changesets
4 checking changesets
5 checking manifests
5 checking manifests
6 crosschecking files in changesets and manifests
6 crosschecking files in changesets and manifests
7 checking files
7 checking files
8 4 files, 9 changesets, 7 total revisions
8 4 files, 9 changesets, 7 total revisions
9 ====== Bundle test to full.hg
9 ====== Bundle test to full.hg
10 searching for changes
10 searching for changes
11 9 changesets found
11 9 changesets found
12 ====== Unbundle full.hg in test
12 ====== Unbundle full.hg in test
13 adding changesets
13 adding changesets
14 adding manifests
14 adding manifests
15 adding file changes
15 adding file changes
16 added 0 changesets with 0 changes to 4 files
16 added 0 changesets with 0 changes to 4 files
17 (run 'hg update' to get a working copy)
17 (run 'hg update' to get a working copy)
18 ====== Verify empty
18 ====== Verify empty
19 changeset: -1:000000000000
19 changeset: -1:000000000000
20 tag: tip
20 tag: tip
21 user:
21 user:
22 date: Thu Jan 01 00:00:00 1970 +0000
22 date: Thu Jan 01 00:00:00 1970 +0000
23
23
24 checking changesets
24 checking changesets
25 checking manifests
25 checking manifests
26 crosschecking files in changesets and manifests
26 crosschecking files in changesets and manifests
27 checking files
27 checking files
28 0 files, 0 changesets, 0 total revisions
28 0 files, 0 changesets, 0 total revisions
29 ====== Pull full.hg into test (using --cwd)
29 ====== Pull full.hg into test (using --cwd)
30 pulling from ../full.hg
30 pulling from ../full.hg
31 searching for changes
31 searching for changes
32 no changes found
32 no changes found
33 ====== Pull full.hg into empty (using --cwd)
33 ====== Pull full.hg into empty (using --cwd)
34 pulling from ../full.hg
34 pulling from ../full.hg
35 requesting all changes
35 requesting all changes
36 adding changesets
36 adding changesets
37 adding manifests
37 adding manifests
38 adding file changes
38 adding file changes
39 added 9 changesets with 7 changes to 4 files (+1 heads)
39 added 9 changesets with 7 changes to 4 files (+1 heads)
40 (run 'hg heads' to see heads, 'hg merge' to merge)
40 (run 'hg heads' to see heads, 'hg merge' to merge)
41 ====== Rollback empty
41 ====== Rollback empty
42 rolling back last transaction
42 rolling back last transaction
43 ====== Pull full.hg into empty again (using --cwd)
43 ====== Pull full.hg into empty again (using --cwd)
44 pulling from ../full.hg
44 pulling from ../full.hg
45 requesting all changes
45 requesting all changes
46 adding changesets
46 adding changesets
47 adding manifests
47 adding manifests
48 adding file changes
48 adding file changes
49 added 9 changesets with 7 changes to 4 files (+1 heads)
49 added 9 changesets with 7 changes to 4 files (+1 heads)
50 (run 'hg heads' to see heads, 'hg merge' to merge)
50 (run 'hg heads' to see heads, 'hg merge' to merge)
51 ====== Pull full.hg into test (using -R)
51 ====== Pull full.hg into test (using -R)
52 pulling from full.hg
52 pulling from full.hg
53 searching for changes
53 searching for changes
54 no changes found
54 no changes found
55 ====== Pull full.hg into empty (using -R)
55 ====== Pull full.hg into empty (using -R)
56 pulling from full.hg
56 pulling from full.hg
57 searching for changes
57 searching for changes
58 no changes found
58 no changes found
59 ====== Rollback empty
59 ====== Rollback empty
60 rolling back last transaction
60 rolling back last transaction
61 ====== Pull full.hg into empty again (using -R)
61 ====== Pull full.hg into empty again (using -R)
62 pulling from full.hg
62 pulling from full.hg
63 requesting all changes
63 requesting all changes
64 adding changesets
64 adding changesets
65 adding manifests
65 adding manifests
66 adding file changes
66 adding file changes
67 added 9 changesets with 7 changes to 4 files (+1 heads)
67 added 9 changesets with 7 changes to 4 files (+1 heads)
68 (run 'hg heads' to see heads, 'hg merge' to merge)
68 (run 'hg heads' to see heads, 'hg merge' to merge)
69 ====== Log -R full.hg in fresh empty
69 ====== Log -R full.hg in fresh empty
70 changeset: 8:836ac62537ab
70 changeset: 8:836ac62537ab
71 tag: tip
71 tag: tip
72 parent: 3:ac69c658229d
72 parent: 3:ac69c658229d
73 user: test
73 user: test
74 date: Mon Jan 12 13:46:40 1970 +0000
74 date: Mon Jan 12 13:46:40 1970 +0000
75 summary: 0.3m
75 summary: 0.3m
76
76
77 changeset: 7:80fe151401c2
77 changeset: 7:80fe151401c2
78 user: test
78 user: test
79 date: Mon Jan 12 13:46:40 1970 +0000
79 date: Mon Jan 12 13:46:40 1970 +0000
80 summary: 1.3m
80 summary: 1.3m
81
81
82 changeset: 6:1e3f6b843bd6
82 changeset: 6:1e3f6b843bd6
83 user: test
83 user: test
84 date: Mon Jan 12 13:46:40 1970 +0000
84 date: Mon Jan 12 13:46:40 1970 +0000
85 summary: 1.3
85 summary: 1.3
86
86
87 changeset: 5:024e4e7df376
87 changeset: 5:024e4e7df376
88 user: test
88 user: test
89 date: Mon Jan 12 13:46:40 1970 +0000
89 date: Mon Jan 12 13:46:40 1970 +0000
90 summary: 1.2
90 summary: 1.2
91
91
92 changeset: 4:5f4f3ceb285e
92 changeset: 4:5f4f3ceb285e
93 parent: 0:5649c9d34dd8
93 parent: 0:5649c9d34dd8
94 user: test
94 user: test
95 date: Mon Jan 12 13:46:40 1970 +0000
95 date: Mon Jan 12 13:46:40 1970 +0000
96 summary: 1.1
96 summary: 1.1
97
97
98 changeset: 3:ac69c658229d
98 changeset: 3:ac69c658229d
99 user: test
99 user: test
100 date: Mon Jan 12 13:46:40 1970 +0000
100 date: Mon Jan 12 13:46:40 1970 +0000
101 summary: 0.3
101 summary: 0.3
102
102
103 changeset: 2:d62976ca1e50
103 changeset: 2:d62976ca1e50
104 user: test
104 user: test
105 date: Mon Jan 12 13:46:40 1970 +0000
105 date: Mon Jan 12 13:46:40 1970 +0000
106 summary: 0.2
106 summary: 0.2
107
107
108 changeset: 1:10b2180f755b
108 changeset: 1:10b2180f755b
109 user: test
109 user: test
110 date: Mon Jan 12 13:46:40 1970 +0000
110 date: Mon Jan 12 13:46:40 1970 +0000
111 summary: 0.1
111 summary: 0.1
112
112
113 changeset: 0:5649c9d34dd8
113 changeset: 0:5649c9d34dd8
114 user: test
114 user: test
115 date: Mon Jan 12 13:46:40 1970 +0000
115 date: Mon Jan 12 13:46:40 1970 +0000
116 summary: 0.0
116 summary: 0.0
117
117
118 ====== Pull ../full.hg into empty (with hook)
118 ====== Pull ../full.hg into empty (with hook)
119 changegroup hook: HG_NODE=5649c9d34dd87d0ecb5fd39672128376e83b22e1 HG_SOURCE=pull HG_URL=bundle:../full.hg
119 changegroup hook: HG_NODE=5649c9d34dd87d0ecb5fd39672128376e83b22e1 HG_SOURCE=pull HG_URL=bundle:../full.hg
120 pulling from bundle://../full.hg
120 pulling from bundle://../full.hg
121 requesting all changes
121 requesting all changes
122 adding changesets
122 adding changesets
123 adding manifests
123 adding manifests
124 adding file changes
124 adding file changes
125 added 9 changesets with 7 changes to 4 files (+1 heads)
125 added 9 changesets with 7 changes to 4 files (+1 heads)
126 (run 'hg heads' to see heads, 'hg merge' to merge)
126 (run 'hg heads' to see heads, 'hg merge' to merge)
127 ====== Rollback empty
128 rolling back last transaction
129 ====== Log -R bundle:empty+full.hg
130 8 7 6 5 4 3 2 1 0
131 ====== Pull full.hg into empty again (using -R; with hook)
132 changegroup hook: HG_NODE=5649c9d34dd87d0ecb5fd39672128376e83b22e1 HG_SOURCE=pull HG_URL=bundle:full.hg+empty
133 pulling from full.hg
134 requesting all changes
135 adding changesets
136 adding manifests
137 adding file changes
138 added 9 changesets with 7 changes to 4 files (+1 heads)
139 (run 'hg heads' to see heads, 'hg merge' to merge)
127 ====== Create partial clones
140 ====== Create partial clones
128 requesting all changes
141 requesting all changes
129 adding changesets
142 adding changesets
130 adding manifests
143 adding manifests
131 adding file changes
144 adding file changes
132 added 4 changesets with 4 changes to 1 files
145 added 4 changesets with 4 changes to 1 files
133 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
146 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
134 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
147 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
135 ====== Log -R full.hg in partial
148 ====== Log -R full.hg in partial
136 changeset: 8:836ac62537ab
149 changeset: 8:836ac62537ab
137 tag: tip
150 tag: tip
138 parent: 3:ac69c658229d
151 parent: 3:ac69c658229d
139 user: test
152 user: test
140 date: Mon Jan 12 13:46:40 1970 +0000
153 date: Mon Jan 12 13:46:40 1970 +0000
141 summary: 0.3m
154 summary: 0.3m
142
155
143 changeset: 7:80fe151401c2
156 changeset: 7:80fe151401c2
144 user: test
157 user: test
145 date: Mon Jan 12 13:46:40 1970 +0000
158 date: Mon Jan 12 13:46:40 1970 +0000
146 summary: 1.3m
159 summary: 1.3m
147
160
148 changeset: 6:1e3f6b843bd6
161 changeset: 6:1e3f6b843bd6
149 user: test
162 user: test
150 date: Mon Jan 12 13:46:40 1970 +0000
163 date: Mon Jan 12 13:46:40 1970 +0000
151 summary: 1.3
164 summary: 1.3
152
165
153 changeset: 5:024e4e7df376
166 changeset: 5:024e4e7df376
154 user: test
167 user: test
155 date: Mon Jan 12 13:46:40 1970 +0000
168 date: Mon Jan 12 13:46:40 1970 +0000
156 summary: 1.2
169 summary: 1.2
157
170
158 changeset: 4:5f4f3ceb285e
171 changeset: 4:5f4f3ceb285e
159 parent: 0:5649c9d34dd8
172 parent: 0:5649c9d34dd8
160 user: test
173 user: test
161 date: Mon Jan 12 13:46:40 1970 +0000
174 date: Mon Jan 12 13:46:40 1970 +0000
162 summary: 1.1
175 summary: 1.1
163
176
164 changeset: 3:ac69c658229d
177 changeset: 3:ac69c658229d
165 user: test
178 user: test
166 date: Mon Jan 12 13:46:40 1970 +0000
179 date: Mon Jan 12 13:46:40 1970 +0000
167 summary: 0.3
180 summary: 0.3
168
181
169 changeset: 2:d62976ca1e50
182 changeset: 2:d62976ca1e50
170 user: test
183 user: test
171 date: Mon Jan 12 13:46:40 1970 +0000
184 date: Mon Jan 12 13:46:40 1970 +0000
172 summary: 0.2
185 summary: 0.2
173
186
174 changeset: 1:10b2180f755b
187 changeset: 1:10b2180f755b
175 user: test
188 user: test
176 date: Mon Jan 12 13:46:40 1970 +0000
189 date: Mon Jan 12 13:46:40 1970 +0000
177 summary: 0.1
190 summary: 0.1
178
191
179 changeset: 0:5649c9d34dd8
192 changeset: 0:5649c9d34dd8
180 user: test
193 user: test
181 date: Mon Jan 12 13:46:40 1970 +0000
194 date: Mon Jan 12 13:46:40 1970 +0000
182 summary: 0.0
195 summary: 0.0
183
196
184 ====== Incoming full.hg in partial
197 ====== Incoming full.hg in partial
185 comparing with bundle://../full.hg
198 comparing with bundle://../full.hg
186 searching for changes
199 searching for changes
187 changeset: 4:5f4f3ceb285e
200 changeset: 4:5f4f3ceb285e
188 parent: 0:5649c9d34dd8
201 parent: 0:5649c9d34dd8
189 user: test
202 user: test
190 date: Mon Jan 12 13:46:40 1970 +0000
203 date: Mon Jan 12 13:46:40 1970 +0000
191 summary: 1.1
204 summary: 1.1
192
205
193 changeset: 5:024e4e7df376
206 changeset: 5:024e4e7df376
194 user: test
207 user: test
195 date: Mon Jan 12 13:46:40 1970 +0000
208 date: Mon Jan 12 13:46:40 1970 +0000
196 summary: 1.2
209 summary: 1.2
197
210
198 changeset: 6:1e3f6b843bd6
211 changeset: 6:1e3f6b843bd6
199 user: test
212 user: test
200 date: Mon Jan 12 13:46:40 1970 +0000
213 date: Mon Jan 12 13:46:40 1970 +0000
201 summary: 1.3
214 summary: 1.3
202
215
203 changeset: 7:80fe151401c2
216 changeset: 7:80fe151401c2
204 user: test
217 user: test
205 date: Mon Jan 12 13:46:40 1970 +0000
218 date: Mon Jan 12 13:46:40 1970 +0000
206 summary: 1.3m
219 summary: 1.3m
207
220
208 changeset: 8:836ac62537ab
221 changeset: 8:836ac62537ab
209 tag: tip
222 tag: tip
210 parent: 3:ac69c658229d
223 parent: 3:ac69c658229d
211 user: test
224 user: test
212 date: Mon Jan 12 13:46:40 1970 +0000
225 date: Mon Jan 12 13:46:40 1970 +0000
213 summary: 0.3m
226 summary: 0.3m
214
227
215 ====== Outgoing -R full.hg vs partial2 in partial
228 ====== Outgoing -R full.hg vs partial2 in partial
216 comparing with ../partial2
229 comparing with ../partial2
217 searching for changes
230 searching for changes
218 changeset: 4:5f4f3ceb285e
231 changeset: 4:5f4f3ceb285e
219 parent: 0:5649c9d34dd8
232 parent: 0:5649c9d34dd8
220 user: test
233 user: test
221 date: Mon Jan 12 13:46:40 1970 +0000
234 date: Mon Jan 12 13:46:40 1970 +0000
222 summary: 1.1
235 summary: 1.1
223
236
224 changeset: 5:024e4e7df376
237 changeset: 5:024e4e7df376
225 user: test
238 user: test
226 date: Mon Jan 12 13:46:40 1970 +0000
239 date: Mon Jan 12 13:46:40 1970 +0000
227 summary: 1.2
240 summary: 1.2
228
241
229 changeset: 6:1e3f6b843bd6
242 changeset: 6:1e3f6b843bd6
230 user: test
243 user: test
231 date: Mon Jan 12 13:46:40 1970 +0000
244 date: Mon Jan 12 13:46:40 1970 +0000
232 summary: 1.3
245 summary: 1.3
233
246
234 changeset: 7:80fe151401c2
247 changeset: 7:80fe151401c2
235 user: test
248 user: test
236 date: Mon Jan 12 13:46:40 1970 +0000
249 date: Mon Jan 12 13:46:40 1970 +0000
237 summary: 1.3m
250 summary: 1.3m
238
251
239 changeset: 8:836ac62537ab
252 changeset: 8:836ac62537ab
240 tag: tip
253 tag: tip
241 parent: 3:ac69c658229d
254 parent: 3:ac69c658229d
242 user: test
255 user: test
243 date: Mon Jan 12 13:46:40 1970 +0000
256 date: Mon Jan 12 13:46:40 1970 +0000
244 summary: 0.3m
257 summary: 0.3m
245
258
246 ====== Outgoing -R does-not-exist.hg vs partial2 in partial
259 ====== Outgoing -R does-not-exist.hg vs partial2 in partial
247 abort: No such file or directory: ../does-not-exist.hg
260 abort: No such file or directory: ../does-not-exist.hg
248 ====== Unbundle incremental bundles into fresh empty in one go
261 ====== Unbundle incremental bundles into fresh empty in one go
249 1 changesets found
262 1 changesets found
250 1 changesets found
263 1 changesets found
251 adding changesets
264 adding changesets
252 adding manifests
265 adding manifests
253 adding file changes
266 adding file changes
254 added 1 changesets with 1 changes to 1 files
267 added 1 changesets with 1 changes to 1 files
255 adding changesets
268 adding changesets
256 adding manifests
269 adding manifests
257 adding file changes
270 adding file changes
258 added 1 changesets with 1 changes to 1 files
271 added 1 changesets with 1 changes to 1 files
259 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
272 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
260 ====== test for 540d1059c802
273 ====== test for 540d1059c802
261 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
274 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
262 searching for changes
275 searching for changes
263 1 changesets found
276 1 changesets found
264 comparing with ../bundle.hg
277 comparing with ../bundle.hg
265 searching for changes
278 searching for changes
266 changeset: 2:ed1b79f46b9a
279 changeset: 2:ed1b79f46b9a
267 tag: tip
280 tag: tip
268 parent: 0:bbd179dfa0a7
281 parent: 0:bbd179dfa0a7
269 user: test
282 user: test
270 date: Thu Jan 01 00:00:00 1970 +0000
283 date: Thu Jan 01 00:00:00 1970 +0000
271 summary: change foo
284 summary: change foo
272
285
General Comments 0
You need to be logged in to leave comments. Login now