hgext/git/dirstate.py
changeset 48385 080151f18f3a
parent 47772 0bdcb5ef932c
child 48875 6000f5b25c9b
equal deleted inserted replaced
48384:9f1b9e128788 48385:080151f18f3a
   255         for x in self.git.index:
   255         for x in self.git.index:
   256             p = pycompat.fsencode(x.path)
   256             p = pycompat.fsencode(x.path)
   257             if match(p):
   257             if match(p):
   258                 yield p
   258                 yield p
   259 
   259 
   260     def set_clean(self, f, parentfiledata=None):
   260     def set_clean(self, f, parentfiledata):
   261         """Mark a file normal and clean."""
   261         """Mark a file normal and clean."""
   262         # TODO: for now we just let libgit2 re-stat the file. We can
   262         # TODO: for now we just let libgit2 re-stat the file. We can
   263         # clearly do better.
   263         # clearly do better.
   264 
   264 
   265     def set_possibly_dirty(self, f):
   265     def set_possibly_dirty(self, f):