Show More
@@ -1,431 +1,456 b'' | |||
|
1 | 1 | Set up a server |
|
2 | 2 | |
|
3 | 3 | $ hg init server |
|
4 | 4 | $ cd server |
|
5 | 5 | $ cat >> .hg/hgrc << EOF |
|
6 | 6 | > [extensions] |
|
7 | 7 | > clonebundles = |
|
8 | 8 | > EOF |
|
9 | 9 | |
|
10 | 10 | $ touch foo |
|
11 | 11 | $ hg -q commit -A -m 'add foo' |
|
12 | 12 | $ touch bar |
|
13 | 13 | $ hg -q commit -A -m 'add bar' |
|
14 | 14 | |
|
15 | 15 | $ hg serve -d -p $HGPORT --pid-file hg.pid --accesslog access.log |
|
16 | 16 | $ cat hg.pid >> $DAEMON_PIDS |
|
17 | 17 | $ cd .. |
|
18 | 18 | |
|
19 | 19 | Feature disabled by default |
|
20 | 20 | (client should not request manifest) |
|
21 | 21 | |
|
22 | 22 | $ hg clone -U http://localhost:$HGPORT feature-disabled |
|
23 | 23 | requesting all changes |
|
24 | 24 | adding changesets |
|
25 | 25 | adding manifests |
|
26 | 26 | adding file changes |
|
27 | 27 | added 2 changesets with 2 changes to 2 files |
|
28 | 28 | |
|
29 | 29 | $ cat server/access.log |
|
30 | 30 | * - - [*] "GET /?cmd=capabilities HTTP/1.1" 200 - (glob) |
|
31 | 31 | * - - [*] "GET /?cmd=batch HTTP/1.1" 200 - x-hgarg-1:cmds=heads+%3Bknown+nodes%3D (glob) |
|
32 | 32 | * - - [*] "GET /?cmd=getbundle HTTP/1.1" 200 - x-hgarg-1:bundlecaps=HG20%2Cbundle2%3DHG20%250Achangegroup%253D01%252C02%250Adigests%253Dmd5%252Csha1%252Csha512%250Aerror%253Dabort%252Cunsupportedcontent%252Cpushraced%252Cpushkey%250Ahgtagsfnodes%250Alistkeys%250Apushkey%250Aremote-changegroup%253Dhttp%252Chttps&cg=1&common=0000000000000000000000000000000000000000&heads=aaff8d2ffbbf07a46dd1f05d8ae7877e3f56e2a2&listkeys=phase%2Cbookmarks (glob) |
|
33 | 33 | * - - [*] "GET /?cmd=listkeys HTTP/1.1" 200 - x-hgarg-1:namespace=phases (glob) |
|
34 | 34 | |
|
35 | 35 | $ cat >> $HGRCPATH << EOF |
|
36 | 36 | > [experimental] |
|
37 | 37 | > clonebundles = true |
|
38 | 38 | > EOF |
|
39 | 39 | |
|
40 | 40 | Missing manifest should not result in server lookup |
|
41 | 41 | |
|
42 | 42 | $ hg --verbose clone -U http://localhost:$HGPORT no-manifest |
|
43 | 43 | requesting all changes |
|
44 | 44 | adding changesets |
|
45 | 45 | adding manifests |
|
46 | 46 | adding file changes |
|
47 | 47 | added 2 changesets with 2 changes to 2 files |
|
48 | 48 | |
|
49 | 49 | $ tail -4 server/access.log |
|
50 | 50 | * - - [*] "GET /?cmd=capabilities HTTP/1.1" 200 - (glob) |
|
51 | 51 | * - - [*] "GET /?cmd=batch HTTP/1.1" 200 - x-hgarg-1:cmds=heads+%3Bknown+nodes%3D (glob) |
|
52 | 52 | * - - [*] "GET /?cmd=getbundle HTTP/1.1" 200 - x-hgarg-1:bundlecaps=HG20%2Cbundle2%3DHG20%250Achangegroup%253D01%252C02%250Adigests%253Dmd5%252Csha1%252Csha512%250Aerror%253Dabort%252Cunsupportedcontent%252Cpushraced%252Cpushkey%250Ahgtagsfnodes%250Alistkeys%250Apushkey%250Aremote-changegroup%253Dhttp%252Chttps&cg=1&common=0000000000000000000000000000000000000000&heads=aaff8d2ffbbf07a46dd1f05d8ae7877e3f56e2a2&listkeys=phase%2Cbookmarks (glob) |
|
53 | 53 | * - - [*] "GET /?cmd=listkeys HTTP/1.1" 200 - x-hgarg-1:namespace=phases (glob) |
|
54 | 54 | |
|
55 | 55 | Empty manifest file results in retrieval |
|
56 | 56 | (the extension only checks if the manifest file exists) |
|
57 | 57 | |
|
58 | 58 | $ touch server/.hg/clonebundles.manifest |
|
59 | 59 | $ hg --verbose clone -U http://localhost:$HGPORT empty-manifest |
|
60 | 60 | no clone bundles available on remote; falling back to regular clone |
|
61 | 61 | requesting all changes |
|
62 | 62 | adding changesets |
|
63 | 63 | adding manifests |
|
64 | 64 | adding file changes |
|
65 | 65 | added 2 changesets with 2 changes to 2 files |
|
66 | 66 | |
|
67 | 67 | Server advertises presence of feature to client requesting full clone |
|
68 | 68 | |
|
69 | 69 | $ hg --config experimental.clonebundles=false clone -U http://localhost:$HGPORT advertise-on-clone |
|
70 | 70 | requesting all changes |
|
71 | 71 | remote: this server supports the experimental "clone bundles" feature that should enable faster and more reliable cloning |
|
72 | 72 | remote: help test it by setting the "experimental.clonebundles" config flag to "true" |
|
73 | 73 | adding changesets |
|
74 | 74 | adding manifests |
|
75 | 75 | adding file changes |
|
76 | 76 | added 2 changesets with 2 changes to 2 files |
|
77 | 77 | |
|
78 | 78 | Manifest file with invalid URL aborts |
|
79 | 79 | |
|
80 | 80 | $ echo 'http://does.not.exist/bundle.hg' > server/.hg/clonebundles.manifest |
|
81 | 81 | $ hg clone http://localhost:$HGPORT 404-url |
|
82 | 82 | applying clone bundle from http://does.not.exist/bundle.hg |
|
83 | 83 | error fetching bundle: * not known (glob) |
|
84 | 84 | abort: error applying bundle |
|
85 | 85 | (if this error persists, consider contacting the server operator or disable clone bundles via "--config experimental.clonebundles=false") |
|
86 | 86 | [255] |
|
87 | 87 | |
|
88 | 88 | Server is not running aborts |
|
89 | 89 | |
|
90 | 90 | $ echo "http://localhost:$HGPORT1/bundle.hg" > server/.hg/clonebundles.manifest |
|
91 | 91 | $ hg clone http://localhost:$HGPORT server-not-runner |
|
92 | 92 | applying clone bundle from http://localhost:$HGPORT1/bundle.hg |
|
93 | 93 | error fetching bundle: Connection refused |
|
94 | 94 | abort: error applying bundle |
|
95 | 95 | (if this error persists, consider contacting the server operator or disable clone bundles via "--config experimental.clonebundles=false") |
|
96 | 96 | [255] |
|
97 | 97 | |
|
98 | 98 | Server returns 404 |
|
99 | 99 | |
|
100 | 100 | $ python $TESTDIR/dumbhttp.py -p $HGPORT1 --pid http.pid |
|
101 | 101 | $ cat http.pid >> $DAEMON_PIDS |
|
102 | 102 | $ hg clone http://localhost:$HGPORT running-404 |
|
103 | 103 | applying clone bundle from http://localhost:$HGPORT1/bundle.hg |
|
104 | 104 | HTTP error fetching bundle: HTTP Error 404: File not found |
|
105 | 105 | abort: error applying bundle |
|
106 | 106 | (if this error persists, consider contacting the server operator or disable clone bundles via "--config experimental.clonebundles=false") |
|
107 | 107 | [255] |
|
108 | 108 | |
|
109 | 109 | We can override failure to fall back to regular clone |
|
110 | 110 | |
|
111 | 111 | $ hg --config ui.clonebundlefallback=true clone -U http://localhost:$HGPORT 404-fallback |
|
112 | 112 | applying clone bundle from http://localhost:$HGPORT1/bundle.hg |
|
113 | 113 | HTTP error fetching bundle: HTTP Error 404: File not found |
|
114 | 114 | falling back to normal clone |
|
115 | 115 | requesting all changes |
|
116 | 116 | adding changesets |
|
117 | 117 | adding manifests |
|
118 | 118 | adding file changes |
|
119 | 119 | added 2 changesets with 2 changes to 2 files |
|
120 | 120 | |
|
121 | 121 | Bundle with partial content works |
|
122 | 122 | |
|
123 | 123 | $ hg -R server bundle --type gzip-v1 --base null -r 53245c60e682 partial.hg |
|
124 | 124 | 1 changesets found |
|
125 | 125 | |
|
126 | 126 | We verify exact bundle content as an extra check against accidental future |
|
127 | 127 | changes. If this output changes, we could break old clients. |
|
128 | 128 | |
|
129 | 129 | $ f --size --hexdump partial.hg |
|
130 | 130 | partial.hg: size=208 |
|
131 | 131 | 0000: 48 47 31 30 47 5a 78 9c 63 60 60 98 17 ac 12 93 |HG10GZx.c``.....| |
|
132 | 132 | 0010: f0 ac a9 23 45 70 cb bf 0d 5f 59 4e 4a 7f 79 21 |...#Ep..._YNJ.y!| |
|
133 | 133 | 0020: 9b cc 40 24 20 a0 d7 ce 2c d1 38 25 cd 24 25 d5 |..@$ ...,.8%.$%.| |
|
134 | 134 | 0030: d8 c2 22 cd 38 d9 24 cd 22 d5 c8 22 cd 24 cd 32 |..".8.$."..".$.2| |
|
135 | 135 | 0040: d1 c2 d0 c4 c8 d2 32 d1 38 39 29 c9 34 cd d4 80 |......2.89).4...| |
|
136 | 136 | 0050: ab 24 b5 b8 84 cb 40 c1 80 2b 2d 3f 9f 8b 2b 31 |.$....@..+-?..+1| |
|
137 | 137 | 0060: 25 45 01 c8 80 9a d2 9b 65 fb e5 9e 45 bf 8d 7f |%E......e...E...| |
|
138 | 138 | 0070: 9f c6 97 9f 2b 44 34 67 d9 ec 8e 0f a0 92 0b 75 |....+D4g.......u| |
|
139 | 139 | 0080: 41 d6 24 59 18 a4 a4 9a a6 18 1a 5b 98 9b 5a 98 |A.$Y.......[..Z.| |
|
140 | 140 | 0090: 9a 18 26 9b a6 19 98 1a 99 99 26 a6 18 9a 98 24 |..&.......&....$| |
|
141 | 141 | 00a0: 26 59 a6 25 5a 98 a5 18 a6 24 71 41 35 b1 43 dc |&Y.%Z....$qA5.C.| |
|
142 | 142 | 00b0: 96 b0 83 f7 e9 45 8b d2 56 c7 a3 1f 82 52 d7 8a |.....E..V....R..| |
|
143 | 143 | 00c0: 78 ed fc d5 76 f1 36 95 dc 05 07 00 ad 39 5e d3 |x...v.6......9^.| |
|
144 | 144 | |
|
145 | 145 | $ echo "http://localhost:$HGPORT1/partial.hg" > server/.hg/clonebundles.manifest |
|
146 | 146 | $ hg clone -U http://localhost:$HGPORT partial-bundle |
|
147 | 147 | applying clone bundle from http://localhost:$HGPORT1/partial.hg |
|
148 | 148 | adding changesets |
|
149 | 149 | adding manifests |
|
150 | 150 | adding file changes |
|
151 | 151 | added 1 changesets with 1 changes to 1 files |
|
152 | 152 | finished applying clone bundle |
|
153 | 153 | searching for changes |
|
154 | 154 | adding changesets |
|
155 | 155 | adding manifests |
|
156 | 156 | adding file changes |
|
157 | 157 | added 1 changesets with 1 changes to 1 files |
|
158 | 158 | |
|
159 | Incremental pull doesn't fetch bundle | |
|
160 | ||
|
161 | $ hg clone -r 53245c60e682 -U http://localhost:$HGPORT partial-clone | |
|
162 | adding changesets | |
|
163 | adding manifests | |
|
164 | adding file changes | |
|
165 | added 1 changesets with 1 changes to 1 files | |
|
166 | ||
|
167 | $ cd partial-clone | |
|
168 | $ hg pull | |
|
169 | pulling from http://localhost:$HGPORT/ | |
|
170 | applying clone bundle from http://localhost:$HGPORT1/partial.hg | |
|
171 | adding changesets | |
|
172 | adding manifests | |
|
173 | adding file changes | |
|
174 | added 0 changesets with 0 changes to 1 files | |
|
175 | finished applying clone bundle | |
|
176 | searching for changes | |
|
177 | adding changesets | |
|
178 | adding manifests | |
|
179 | adding file changes | |
|
180 | added 1 changesets with 1 changes to 1 files | |
|
181 | (run 'hg update' to get a working copy) | |
|
182 | $ cd .. | |
|
183 | ||
|
159 | 184 | Bundle with full content works |
|
160 | 185 | |
|
161 | 186 | $ hg -R server bundle --type gzip-v2 --base null -r tip full.hg |
|
162 | 187 | 2 changesets found |
|
163 | 188 | |
|
164 | 189 | Again, we perform an extra check against bundle content changes. If this content |
|
165 | 190 | changes, clone bundles produced by new Mercurial versions may not be readable |
|
166 | 191 | by old clients. |
|
167 | 192 | |
|
168 | 193 | $ f --size --hexdump full.hg |
|
169 | 194 | full.hg: size=408 |
|
170 | 195 | 0000: 48 47 32 30 00 00 00 0e 43 6f 6d 70 72 65 73 73 |HG20....Compress| |
|
171 | 196 | 0010: 69 6f 6e 3d 47 5a 78 9c 63 60 60 90 e5 76 f6 70 |ion=GZx.c``..v.p| |
|
172 | 197 | 0020: f4 73 77 75 0f f2 0f 0d 60 00 02 46 06 76 a6 b2 |.swu....`..F.v..| |
|
173 | 198 |
|
|
174 | 199 |
|
|
175 | 200 |
|
|
176 | 201 |
|
|
177 | 202 | 0070: a4 59 26 5a 18 9a 18 59 5a 26 1a 27 27 25 99 a6 |.Y&Z...YZ&.''%..| |
|
178 | 203 | 0080: 99 1a 70 95 a4 16 97 70 19 28 18 70 a5 e5 e7 73 |..p....p.(.p...s| |
|
179 | 204 | 0090: 71 25 a6 a4 28 00 19 40 13 0e ac fa df ab ff 7b |q%..(..@.......{| |
|
180 | 205 | 00a0: 3f fb 92 dc 8b 1f 62 bb 9e b7 d7 d9 87 3d 5a 44 |?.....b......=ZD| |
|
181 | 206 | 00b0: ac 2f b0 a9 c3 66 1e 54 b9 26 08 a7 1a 1b 1a a7 |./...f.T.&......| |
|
182 | 207 | 00c0: 25 1b 9a 1b 99 19 9a 5a 18 9b a6 18 19 00 dd 67 |%......Z.......g| |
|
183 | 208 | 00d0: 61 61 98 06 f4 80 49 4a 8a 65 52 92 41 9a 81 81 |aa....IJ.eR.A...| |
|
184 | 209 | 00e0: a5 11 17 50 31 30 58 19 cc 80 98 25 29 b1 08 c4 |...P10X....%)...| |
|
185 | 210 | 00f0: 37 07 79 19 88 d9 41 ee 07 8a 41 cd 5d 98 65 fb |7.y...A...A.].e.| |
|
186 | 211 | 0100: e5 9e 45 bf 8d 7f 9f c6 97 9f 2b 44 34 67 d9 ec |..E.......+D4g..| |
|
187 | 212 | 0110: 8e 0f a0 61 a8 eb 82 82 2e c9 c2 20 25 d5 34 c5 |...a....... %.4.| |
|
188 | 213 | 0120: d0 d8 c2 dc d4 c2 d4 c4 30 d9 34 cd c0 d4 c8 cc |........0.4.....| |
|
189 | 214 | 0130: 34 31 c5 d0 c4 24 31 c9 32 2d d1 c2 2c c5 30 25 |41...$1.2-..,.0%| |
|
190 | 215 | 0140: 09 e4 ee 85 8f 85 ff 88 ab 89 36 c7 2a c4 47 34 |..........6.*.G4| |
|
191 | 216 | 0150: fe f8 ec 7b 73 37 3f c3 24 62 1d 8d 4d 1d 9e 40 |...{s7?.$b..M..@| |
|
192 | 217 | 0160: 06 3b 10 14 36 a4 38 10 04 d8 21 01 5a b2 83 f7 |.;..6.8...!.Z...| |
|
193 | 218 | 0170: e9 45 8b d2 56 c7 a3 1f 82 52 d7 8a 78 ed fc d5 |.E..V....R..x...| |
|
194 | 219 | 0180: 76 f1 36 25 81 49 c0 ad 30 c0 0e 49 8f 54 b7 9e |v.6%.I..0..I.T..| |
|
195 | 220 | 0190: d4 1c 09 00 bb 8d f0 bd |........| |
|
196 | 221 | |
|
197 | 222 | $ echo "http://localhost:$HGPORT1/full.hg" > server/.hg/clonebundles.manifest |
|
198 | 223 | $ hg clone -U http://localhost:$HGPORT full-bundle |
|
199 | 224 | applying clone bundle from http://localhost:$HGPORT1/full.hg |
|
200 | 225 | adding changesets |
|
201 | 226 | adding manifests |
|
202 | 227 | adding file changes |
|
203 | 228 | added 2 changesets with 2 changes to 2 files |
|
204 | 229 | finished applying clone bundle |
|
205 | 230 | searching for changes |
|
206 | 231 | no changes found |
|
207 | 232 | |
|
208 | 233 | Entry with unknown BUNDLESPEC is filtered and not used |
|
209 | 234 | |
|
210 | 235 | $ cat > server/.hg/clonebundles.manifest << EOF |
|
211 | 236 | > http://bad.entry1 BUNDLESPEC=UNKNOWN |
|
212 | 237 |
|
|
213 | 238 |
|
|
214 | 239 |
|
|
215 | 240 |
|
|
216 | 241 | |
|
217 | 242 |
$ |
|
218 | 243 |
|
|
219 | 244 |
|
|
220 | 245 |
|
|
221 | 246 |
|
|
222 | 247 |
|
|
223 | 248 |
|
|
224 | 249 |
|
|
225 | 250 |
|
|
226 | 251 | |
|
227 | 252 |
|
|
228 | 253 | |
|
229 | 254 |
$ |
|
230 | 255 | > http://bad.entry BUNDLESPEC=UNKNOWN |
|
231 | 256 |
|
|
232 | 257 | |
|
233 | 258 |
$ hg |
|
234 | 259 |
|
|
235 | 260 |
(you |
|
236 | 261 |
|
|
237 | 262 |
|
|
238 | 263 |
|
|
239 | 264 |
|
|
240 | 265 |
|
|
241 | 266 | |
|
242 | 267 |
|
|
243 | 268 | |
|
244 | 269 |
$ |
|
245 | 270 |
$ |
|
246 | 271 | > http://localhost:$HGPORT1/sni.hg REQUIRESNI=true |
|
247 | 272 |
|
|
248 | 273 |
|
|
249 | 274 | |
|
250 | 275 | #if sslcontext |
|
251 | 276 |
|
|
252 | 277 | |
|
253 | 278 |
$ |
|
254 | 279 |
|
|
255 | 280 |
|
|
256 | 281 |
|
|
257 | 282 |
|
|
258 | 283 |
|
|
259 | 284 |
|
|
260 | 285 |
|
|
261 | 286 |
|
|
262 | 287 | #else |
|
263 | 288 |
|
|
264 | 289 | |
|
265 | 290 |
$ |
|
266 | 291 |
|
|
267 | 292 |
|
|
268 | 293 |
|
|
269 | 294 |
|
|
270 | 295 |
|
|
271 | 296 |
|
|
272 | 297 |
|
|
273 | 298 |
|
|
274 | 299 | #endif |
|
275 | 300 | |
|
276 | 301 |
|
|
277 | 302 | |
|
278 | 303 |
$ |
|
279 | 304 |
|
|
280 | 305 |
|
|
281 | 306 | |
|
282 | 307 |
|
|
283 | 308 | |
|
284 | 309 |
$ |
|
285 | 310 | > http://localhost:$HGPORT1/packed.hg |
|
286 | 311 |
|
|
287 | 312 | |
|
288 | 313 |
$ hg |
|
289 | 314 |
|
|
290 | 315 |
|
|
291 | 316 |
|
|
292 | 317 |
|
|
293 | 318 |
|
|
294 | 319 |
|
|
295 | 320 | |
|
296 | 321 |
|
|
297 | 322 | |
|
298 | 323 |
$ |
|
299 | 324 | > http://localhost:$HGPORT1/packed.hg BUNDLESPEC=none-packed1 |
|
300 | 325 |
|
|
301 | 326 | |
|
302 | 327 |
$ hg |
|
303 | 328 |
|
|
304 | 329 |
|
|
305 | 330 |
|
|
306 | 331 |
|
|
307 | 332 |
|
|
308 | 333 |
|
|
309 | 334 | |
|
310 | 335 |
|
|
311 | 336 | |
|
312 | 337 |
$ |
|
313 | 338 | > http://localhost:$HGPORT1/packed.hg BUNDLESPEC=none-packed1;requirements%3Drevlogv1 |
|
314 | 339 |
|
|
315 | 340 | |
|
316 | 341 |
$ hg |
|
317 | 342 |
|
|
318 | 343 |
|
|
319 | 344 |
|
|
320 | 345 |
|
|
321 | 346 |
|
|
322 | 347 |
|
|
323 | 348 | |
|
324 | 349 |
|
|
325 | 350 | |
|
326 | 351 |
$ |
|
327 | 352 | > http://localhost:$HGPORT1/packed.hg BUNDLESPEC=none-packed1;requirements%3Drevlogv42 |
|
328 | 353 |
|
|
329 | 354 | |
|
330 | 355 |
$ hg |
|
331 | 356 |
|
|
332 | 357 |
(you |
|
333 | 358 |
|
|
334 | 359 |
|
|
335 | 360 |
|
|
336 | 361 |
|
|
337 | 362 |
|
|
338 | 363 | |
|
339 | 364 |
|
|
340 | 365 |
(Remember, the |
|
341 | 366 |
|
|
342 | 367 | |
|
343 | 368 |
|
|
344 | 369 |
$ |
|
345 | 370 |
$ |
|
346 | 371 |
$ |
|
347 | 372 |
$ |
|
348 | 373 | > http://localhost:$HGPORT1/gz-a.hg BUNDLESPEC=gzip-v2 extra=a |
|
349 | 374 |
|
|
350 | 375 |
|
|
351 | 376 |
|
|
352 | 377 |
|
|
353 | 378 | |
|
354 | 379 |
|
|
355 | 380 | |
|
356 | 381 |
$ |
|
357 | 382 |
|
|
358 | 383 |
|
|
359 | 384 |
|
|
360 | 385 |
|
|
361 | 386 |
|
|
362 | 387 |
|
|
363 | 388 |
|
|
364 | 389 |
|
|
365 | 390 | |
|
366 | 391 |
|
|
367 | 392 | |
|
368 | 393 |
$ |
|
369 | 394 |
|
|
370 | 395 |
|
|
371 | 396 |
|
|
372 | 397 |
|
|
373 | 398 |
|
|
374 | 399 |
|
|
375 | 400 |
|
|
376 | 401 |
|
|
377 | 402 | |
|
378 | 403 |
|
|
379 | 404 | |
|
380 | 405 |
$ |
|
381 | 406 |
|
|
382 | 407 |
|
|
383 | 408 |
|
|
384 | 409 |
|
|
385 | 410 |
|
|
386 | 411 |
|
|
387 | 412 |
|
|
388 | 413 |
|
|
389 | 414 | |
|
390 | 415 |
|
|
391 | 416 | |
|
392 | 417 |
$ |
|
393 | 418 |
|
|
394 | 419 |
|
|
395 | 420 |
|
|
396 | 421 |
|
|
397 | 422 |
|
|
398 | 423 |
|
|
399 | 424 |
|
|
400 | 425 |
|
|
401 | 426 | |
|
402 | 427 |
|
|
403 | 428 | |
|
404 | 429 |
$ |
|
405 | 430 |
|
|
406 | 431 |
|
|
407 | 432 |
|
|
408 | 433 |
|
|
409 | 434 |
|
|
410 | 435 |
|
|
411 | 436 |
|
|
412 | 437 |
|
|
413 | 438 | |
|
414 | 439 |
|
|
415 | 440 | |
|
416 | 441 |
$ |
|
417 | 442 | > http://localhost:$HGPORT1/gz-a.hg BUNDLESPEC=gzip-v2 |
|
418 | 443 |
|
|
419 | 444 |
|
|
420 | 445 |
|
|
421 | 446 |
|
|
422 | 447 | |
|
423 | 448 |
$ |
|
424 | 449 |
|
|
425 | 450 |
|
|
426 | 451 |
|
|
427 | 452 |
|
|
428 | 453 |
|
|
429 | 454 |
|
|
430 | 455 |
|
|
431 | 456 |
|
General Comments 0
You need to be logged in to leave comments.
Login now