tests/test-resolve
author Robert Bauck Hamar <r.b.hamar@usit.uio.no>
Mon, 09 Feb 2009 19:00:48 +0100
changeset 7745 8bfe47e726fe
parent 7734 9f73bddb9d0b
child 8167 6c82beaaa11a
permissions -rwxr-xr-x
hgk: added setting of foreground colour Added the fgcolor setting read by hgk to change the text colour in the diff output and the file list. The colours for diff highlighting remains unchanged.

#!/bin/sh

# test that a commit clears the merge state.

hg init repo
cd repo

echo foo > file
hg commit -Am 'add file' -d '0 0'

echo bar >> file
hg commit -Am 'append bar' -d '0 0'

echo % create a second head
hg up -C 0
echo baz >> file
hg commit -Am 'append baz' -d '0 0'

echo % failing merge
HGMERGE=internal:fail hg merge

echo resolved > file
hg resolve -m file
hg commit -m 'resolved' -d '0 0'

echo % resolve -l, should be empty
hg resolve -l