##// END OF EJS Templates
Read global config file /etc/mercurial/hgrc and fix reading hgrc on Windows.
Read global config file /etc/mercurial/hgrc and fix reading hgrc on Windows.

File last commit:

r814:0902ffec merge default
r951:859de3eb default
Show More
test-pull
22 lines | 267 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 &
sleep 1 # wait for server to be started
cd ..
hg clone http://localhost:20059/ copy
cd copy
hg verify
hg co
cat foo
hg manifest
hg pull
kill $!