Mercurial > public > mercurial-scm > hg
view tests/test-resolve @ 7861:2bc14da14992
demandimport: blacklist pythoncom
win32com.shell would segfault at import time if pythoncom
was demand loaded.
author | Steve Borho <steve@borho.org> |
---|---|
date | Mon, 09 Mar 2009 21:00:37 -0500 |
parents | 9f73bddb9d0b |
children | 6c82beaaa11a |
line wrap: on
line source
#!/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