diff -r 689540e6007e -r 30b602168c3b mercurial/merge.py --- a/mercurial/merge.py Tue Dec 02 17:11:01 2014 -0800 +++ b/mercurial/merge.py Sun Nov 16 23:41:44 2014 -0800 @@ -298,8 +298,7 @@ return r def _checkunknownfile(repo, wctx, mctx, f): - return (not repo.dirstate._ignore(f) - and os.path.isfile(repo.wjoin(f)) + return (os.path.isfile(repo.wjoin(f)) and repo.wopener.audit.check(f) and repo.dirstate.normalize(f) not in repo.dirstate and mctx[f].cmp(wctx[f]))