tests/test-simple-update
author TK Soh <teekaysoh@yahoo.com>
Sat, 27 Aug 2005 18:55:14 -0700
changeset 1113 6130de75bb2a
parent 814 0902ffece4b4
child 3736 ad3d5b4367cb
permissions -rwxr-xr-x
Updated manpage and help. Updated manpage on change to hg status; standardized description of -print0 options.

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