tests/test-conflict
author Patrick Mezard <pmezard@gmail.com>
Sat, 11 Apr 2009 23:12:42 +0200
changeset 8050 087cc65bebff
parent 4387 93a4e72b4f83
permissions -rwxr-xr-x
convert/mtn: record changes from directory renames (issue1587) Bug report and initial path by Pavel Volkovitskiy <int@mtx.ru>

#!/bin/sh

hg init
echo "nothing" > a
hg add a
hg commit -m ancestor -d "1000000 0"
echo "something" > a
hg commit -m branch1 -d "1000000 0"
hg co 0
echo "something else" > a
hg commit -m branch2 -d "1000000 0"
hg merge 1
hg id
cat a
hg status