tests/test-rename-merge1
author Matt Mackall <mpm@selenic.com>
Mon, 02 Oct 2006 22:03:14 -0500
changeset 3239 6d98149d70fe
parent 3155 c82ea81d6850
child 3257 c93ce7f10f85
permissions -rwxr-xr-x
contexts: add working dir and working file contexts add workingctx add workingfilectx extend filectx.annotate for rev=None extend filectx.ancestor

#!/bin/sh

mkdir t
cd t
hg init
echo foo > a
echo foo > a2
hg add a a2
hg ci -m "start" -d "0 0"
hg mv a b
hg mv a2 b2
hg ci -m "rename" -d "0 0"
echo "checkout"
hg co 0
echo blahblah > a
echo blahblah > a2
hg mv a2 c2
hg ci -m "modify" -d "0 0"
echo "merge"
hg merge -y --debug
cat a
cat b
hg ci -m "merge" -d "0 0"