##// END OF EJS Templates
convert: cvs.py - Allow user to use built-in CVS changeset code....
convert: cvs.py - Allow user to use built-in CVS changeset code. tests: add two testcases for CVS conversion with builtin CVS including a testcase for issue 1148.

File last commit:

r3736:ad3d5b43 default
r6690:127e8c34 default
Show More
test-simple-update
24 lines | 245 B | text/plain | TextLexer
#!/bin/sh
set -e
mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -m "1"
hg verify
hg clone . ../branch
cd ../branch
hg co
echo bar>>foo
hg commit -m "2"
cd ../test
hg pull ../branch
hg verify
hg co
cat foo
hg manifest --debug