##// END OF EJS Templates
Minor typo change to reflect actual values used.
Minor typo change to reflect actual values used.

File last commit:

r1929:85daa4e0 merge default
r2338:391c5d0f default
Show More
test-pull
21 lines | 264 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 -d --pid-file=hg.pid
cd ..
http_proxy= hg clone http://localhost:20059/ copy
cd copy
hg verify
hg co
cat foo
hg manifest
hg pull
kill `cat ../test/hg.pid`