Submitter | phabricator |
---|---|
Date | Jan. 18, 2018, 1:01 p.m. |
Message ID | <dd06d98913932f4571de58cf52867b35@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/26868/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/filemerge.py b/mercurial/filemerge.py --- a/mercurial/filemerge.py +++ b/mercurial/filemerge.py @@ -636,7 +636,8 @@ # merging in-memory, we must redirect the backup to the memory context # so we don't disturb the working directory. relpath = back[len(repo.wvfs.base) + 1:] - wctx[relpath].write(fcd.data(), fcd.flags()) + if premerge: + wctx[relpath].write(fcd.data(), fcd.flags()) return wctx[relpath] else: if premerge: