tests/test-simple-update
author Matt Mackall <mpm@selenic.com>
Wed, 16 Jan 2008 11:14:24 -0600
changeset 5863 3d1f9dcecdea
parent 3736 ad3d5b4367cb
permissions -rwxr-xr-x
diff: don't show function name by default We'd mistakenly made the -p option always on, which meant there was no way to turn it off. It also meant that we were sometimes splitting multibyte characters in function name, which isn't a good default.

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