tests/test-pull
author mpm@selenic.com
Thu, 14 Jul 2005 22:56:55 -0800
changeset 705 574869103985
parent 642 5d6177b72fcc
child 749 7e4843b7efd2
permissions -rwxr-xr-x
Merge with TAH manifest hash: 197e0d1a0d7376a9eb72381330462f06490ab821

#!/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 $!