##// END OF EJS Templates
Fix callers to file.revision to use file.read...
Fix callers to file.revision to use file.read This was causing unchanged files to show up as modified.

File last commit:

r814:0902ffec merge default
r994:88c15682 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 $!