##// END OF EJS Templates
Changed coding hint to BOM
Changed coding hint to BOM

File last commit:

r749:7e4843b7 default
r760:73540173 default
Show More
test-pull
21 lines | 227 B | text/plain | TextLexer
#!/bin/sh
mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -m 1
hg verify
hg serve -p 20059 > /dev/null &
cd ..
hg clone http://localhost:20059/ copy
cd copy
hg verify
hg co
cat foo
hg manifest
hg pull
kill $!