sapling/tests/test-simple-update

25 lines
237 B
Plaintext
Raw Normal View History

#!/bin/sh
set -e
2005-05-05 10:57:51 +04:00
mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -m "1"
2005-05-05 10:57:51 +04:00
hg verify
hg clone . ../branch
cd ../branch
hg co
2005-05-05 10:57:51 +04:00
echo bar>>foo
hg commit -m "2"
2005-05-05 10:57:51 +04:00
cd ../test
hg pull ../branch
2005-05-05 10:57:51 +04:00
hg verify
hg co
cat foo
hg manifest