tests/test-simple-update
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Mon, 24 Mar 2008 16:17:19 -0300
changeset 6380 a632a9a57821
parent 3736 ad3d5b4367cb
permissions -rwxr-xr-x
qclone: do not abort if remote hasn't enabled mq (issue1040)

#!/bin/sh

set -e

mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -m "1"
hg verify

hg clone . ../branch
cd ../branch
hg co
echo bar>>foo
hg commit -m "2"

cd ../test
hg pull ../branch
hg verify
hg co
cat foo
hg manifest --debug