# HG changeset patch # User Pierre-Yves David # Date 1626648479 -7200 # Node ID 8a50fb0784a9d66723ec84e190d6a73abac68537 # Parent 7d2f0e14da4ccc794f7fa6fb37163e95c640a9e8 dirstate: introduce a `set_clean` method This will provide a good alternative to `normal` call with a narrower semantic. Differential Revision: https://phab.mercurial-scm.org/D11146 diff -r 7d2f0e14da4c -r 8a50fb0784a9 mercurial/dirstate.py --- a/mercurial/dirstate.py Mon Jul 19 00:04:24 2021 +0200 +++ b/mercurial/dirstate.py Mon Jul 19 00:47:59 2021 +0200 @@ -499,6 +499,13 @@ self._remove(filename) return True + @requires_no_parents_change + def set_clean(self, filename, parentfiledata=None): + """record that the current state of the file on disk is known to be clean""" + self._dirty = True + self._updatedfiles.add(filename) + self.normal(filename, parentfiledata=parentfiledata) + @requires_parents_change def update_file_p1( self,