Mercurial > hg
view tests/test-conflict.t @ 11996:3195cf01dfb9
revlog.revision(): don't use nullrev as the default value for the cache
I is probably a bug if the deltachain computation think there was a cache hit
at nullrev. Use None instead, this will never trigger a cache hit.
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Fri, 20 Aug 2010 00:17:50 +0200 |
parents | 66e4e8e8b1e5 |
children | 4c94b6d0fb1c |
line wrap: on
line source
$ 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 1 files updated, 0 files merged, 0 files removed, 0 files unresolved $ echo "something else" > a $ hg commit -m branch2 -d "1000000 0" created new head $ hg merge 1 merging a warning: conflicts during merge. merging a failed! 0 files updated, 0 files merged, 0 files removed, 1 files unresolved use 'hg resolve' to retry unresolved file merges or 'hg update -C' to abandon $ hg id e7fe8eb3e180+0d24b7662d3e+ tip $ cat a <<<<<<< local something else ======= something >>>>>>> other $ hg status M a ? a.orig