tests/test-pull
author jdc@uwo.ca
Sun, 17 Jul 2005 08:39:44 +0100
changeset 718 7dae73778114
parent 642 5d6177b72fcc
child 749 7e4843b7efd2
permissions -rwxr-xr-x
Fix typos in FAQ

#!/bin/sh

mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -t "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 $!