tests/test-pull
author Thomas Arendsen Hein <thomas@intevation.de>
Fri, 22 Jul 2005 08:47:35 +0100
changeset 757 7000825ef3ba
parent 749 7e4843b7efd2
child 790 d7380783a086
child 793 445970ccf57a
child 808 8f5637f0a0c0
child 814 0902ffece4b4
permissions -rwxr-xr-x
Updated help strings and test-help: - options -I/-X: always at the end, don't include them in the synopsis. - NAME is optional for hg revert - other small changes.

#!/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 &
cd ..

hg clone http://localhost:20059/ copy
cd copy
hg verify
hg co
cat foo
hg manifest
hg pull

kill $!