tests/test-simple-update
author Patrick Mezard <pmezard@gmail.com>
Mon, 18 Jan 2010 22:59:32 +0100
changeset 10260 fe699ca08a45
parent 3736 ad3d5b4367cb
permissions -rwxr-xr-x
templatekw: fix extras, manifest and showlist args (issue1989) Removing the explicit parameters from keywords signature is easier than copying and reproducing the original argument list.

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