tests/test-pull
author mpm@selenic.com
Wed, 15 Jun 2005 19:48:04 -0800
changeset 370 c90385d82aec
parent 350 b4e0e20646bb
child 382 37249c522770
permissions -rwxr-xr-x
revlog: add a children function -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 revlog: add a children function manifest hash: eda39cb99d0df5b3262d97a9e161a8acceb1da3d -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCsPZ0ywK+sNU5EO8RAiAcAJ9D+y8zQ/Gai7CpTkfTamPFxmvVRACcDRv9 5HkupYyrxslGnGJpELaF1is= =zf1d -----END PGP SIGNATURE-----

#!/bin/bash

set -e

mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -t "1"
hg verify
hg serve 2>/dev/null &
C=$!
cd ..

mkdir copy
cd copy
hg init http://localhost:8000/
hg verify
hg co
cat foo
hg manifest

kill $C