comparison tests/test-bundle @ 4042:f6f65a8d8ed3

add test for 540d1059c802
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Mon, 15 Jan 2007 16:13:50 -0200
parents 9dcf9d45cab8
children ce71da8ab4f5
comparison
equal deleted inserted replaced
4028:540d1059c802 4042:f6f65a8d8ed3
57 hg -R bundle://../full.hg log 57 hg -R bundle://../full.hg log
58 hg incoming bundle://../full.hg 58 hg incoming bundle://../full.hg
59 hg -R bundle://../full.hg outgoing ../partial2 59 hg -R bundle://../full.hg outgoing ../partial2
60 hg -R bundle://../does-not-exist.hg outgoing ../partial2 60 hg -R bundle://../does-not-exist.hg outgoing ../partial2
61 cd .. 61 cd ..
62
63 # test for 540d1059c802
64 hg init orig
65 cd orig
66 echo foo > foo
67 hg add foo
68 hg ci -m 'add foo' -d '0 0'
69
70 hg clone . ../copy
71 hg tag -d '0 0' foo
72
73 cd ../copy
74 echo >> foo
75 hg ci -m 'change foo' -d '0 0'
76 hg bundle ../bundle.hg ../orig
77
78 cd ../orig
79 hg incoming ../bundle.hg
80 cd ..