view tests/test-pull @ 723:9e0f3ba4a9c2

Work on walk code.
author Bryan O'Sullivan <bos@serpentine.com>
date Sat, 16 Jul 2005 15:13:40 -0800
parents 5d6177b72fcc
children 7e4843b7efd2
line wrap: on
line source

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