view tests/test-simple-update @ 394:e6db25785b00

Add COPYING -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Add COPYING manifest hash: 7ca259e873d941d922b46c7fbf39696e258149ce -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCswkdywK+sNU5EO8RAtB9AKCrG7JLOFwEKLjr/TwdvcqjjHmzJQCfcFUK lBazBFg3F2G3knOABzuSqPA= =i2Qb -----END PGP SIGNATURE-----
author mpm@selenic.com
date Fri, 17 Jun 2005 09:32:13 -0800
parents b4e0e20646bb
children c5705ab9cebd
line wrap: on
line source

#!/bin/bash

set -ex

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

mkdir branch
cd branch
hg init ../test
hg co
echo bar>>foo
hg commit -t "2"

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