tests/test-manifest-merging
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Sun, 24 Dec 2006 22:28:01 +0100
changeset 3960 c137e21dba5a
parent 3953 a8eb050c6489
child 3988 9dcf9d45cab8
permissions -rwxr-xr-x
test-manifest-merging: we only need to remove files

#!/bin/sh

echo % init foo-base
hg init foo-base

echo % create alpha in first repo
cd foo-base
echo 'alpha' > alpha
hg ci -A -m 'add alpha' -d '1 0'
cd ..

echo % clone foo-base to foo-work
hg clone foo-base foo-work

echo % create beta in second repo
cd foo-work
echo 'beta' > beta
hg ci -A -m 'add beta' -d '2 0'
cd ..

echo % create gamma in first repo
cd foo-base
echo 'gamma' > gamma
hg ci -A -m 'add gamma' -d '3 0'
cd ..

echo % pull into work and merge
cd foo-work
hg pull -q
hg merge

echo % revert to changeset 1 to simulate a failed merge
rm -f alpha beta gamma
hg up -C 1