diff -r ae7f27867c2a -r 1322ae04d3d7 mercurial/merge.py --- a/mercurial/merge.py Fri Jun 15 22:16:58 2018 +0900 +++ b/mercurial/merge.py Tue Jun 19 22:45:52 2018 +0900 @@ -1106,8 +1106,10 @@ copied = set(copy.values()) copied.update(movewithdir.values()) - if '.hgsubstate' in m1: - # check whether sub state is modified + if '.hgsubstate' in m1 and wctx.rev() is None: + # Check whether sub state is modified, and overwrite the manifest + # to flag the change. If wctx is a committed revision, we shouldn't + # care for the dirty state of the working directory. if any(wctx.sub(s).dirty() for s in wctx.substate): m1['.hgsubstate'] = modifiednodeid