view tests/test-pull @ 2052:c0b945c5df08

Added tag 0.8.1 for changeset 6a03cff2b0f5d30281e6addefe96b993582f2eac
author Matt Mackall <mpm@selenic.com>
date Fri, 07 Apr 2006 20:08:11 -0500
parents 85daa4e03b4c
children
line wrap: on
line source

#!/bin/sh

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

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

kill `cat ../test/hg.pid`