tests/test-conflict
author Bryan O'Sullivan <bos@serpentine.com>
Tue, 24 Apr 2007 12:02:51 -0700
changeset 4373 109077e7048d
parent 4361 46280c004f22
child 4385 93a4e72b4f83
permissions -rwxr-xr-x
When reloading the dirstate, recompute ignore information if needed.

#!/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
egrep -v ">>>|<<<" a
hg status