view tests/test-simple-update @ 9216:9b2649b6ce5c

win32mbcs: fix formatting of lists with proper reST markup
author Martin Geisler <mg@lazybytes.net>
date Thu, 23 Jul 2009 00:25:54 +0200
parents ad3d5b4367cb
children
line wrap: on
line source

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