view tests/test-pull @ 371:6e3436082697

hg push: "default-push" default target path -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hg push: "default-push" default target path manifest hash: 368f3a073e172272bac06bf5b2ace78f03ffd3bf -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCsPeJywK+sNU5EO8RAuNZAKChSFEUCILHmRJmj3/7EDij3RK31gCdF2qF vQ8+72bbEPmxa3HOTdNliu0= =Nyi+ -----END PGP SIGNATURE-----
author mpm@selenic.com
date Wed, 15 Jun 2005 19:52:41 -0800
parents b4e0e20646bb
children 37249c522770
line wrap: on
line source

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