##// END OF EJS Templates
tests: add tests for partial pulls with treediscovery
Peter Arrenbrecht -
r14410:afeb14a8 default
parent child Browse files
Show More
@@ -277,5 +277,47 b' Local is superset:'
277 [1]
277 [1]
278 $ cd ..
278 $ cd ..
279
279
280 Partial pull:
281
282 $ stop ; start main
283 $ hg clone $remote partial --rev name2
284 adding changesets
285 adding manifests
286 adding file changes
287 added 6 changesets with 12 changes to 2 files
288 updating to branch name2
289 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
290 $ cd partial
291 $ hg incoming $remote
292 comparing with http://localhost:$HGPORT/
293 searching for changes
294 6 a7892891da29: r2 name1
295 7 2c8d5d5ec612: r3 name1
296 8 e71dbbc70e03: r4 name1
297 9 025829e08038: r9 both
298 10 8b6bad1512e1: r10 both
299 11 a19bfa7e7328: r11 both
300 $ hg incoming $remote --rev name1
301 comparing with http://localhost:$HGPORT/
302 searching for changes
303 6 a7892891da29: r2 name1
304 7 2c8d5d5ec612: r3 name1
305 8 e71dbbc70e03: r4 name1
306 $ hg pull $remote --rev name1
307 pulling from http://localhost:$HGPORT/
308 searching for changes
309 adding changesets
310 adding manifests
311 adding file changes
312 added 3 changesets with 6 changes to 2 files (+1 heads)
313 (run 'hg heads' to see heads)
314 $ hg incoming $remote
315 comparing with http://localhost:$HGPORT/
316 searching for changes
317 9 025829e08038: r9 both
318 10 8b6bad1512e1: r10 both
319 11 a19bfa7e7328: r11 both
320 $ cd ..
321
280 $ stop
322 $ stop
281
323
General Comments 0
You need to be logged in to leave comments. Login now