##// END OF EJS Templates
Provided platform dependent implementations for explain_exit...
Provided platform dependent implementations for explain_exit os.system return code is system dependent.

File last commit:

r749:7e4843b7 default
r782:cdb9e95b default
Show More
test-simple-update
24 lines | 238 B | text/plain | TextLexer
#!/bin/sh
set -ex
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