view tests/test-pull @ 1763:fa34a74efc40

Make option --branch vs. --branches more consistent. As you can abbreviate --branches to --branch, old scripts using the long name will still work.
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 21 Feb 2006 13:14:03 +0100
parents 385b06493465
children ffb584a182d1
line wrap: on
line source

#!/bin/sh

mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -m 1
hg verify
serverpid=`mktemp`
hg serve -p 20059 -d --pid-file=$serverpid
cd ..

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

kill `cat $serverpid`
rm $serverpid