##// END OF EJS Templates
localrepo.status: detect clean files even when the mtime has changed
Alexis S. L. Carvalho -
r2961:5bb65c39 default
parent child Browse files
Show More
@@ -710,8 +710,10 b' class localrepository(repo.repository):'
710 for f in lookup:
710 for f in lookup:
711 if fcmp(f, mf2):
711 if fcmp(f, mf2):
712 modified.append(f)
712 modified.append(f)
713 elif wlock is not None:
713 else:
714 self.dirstate.update([f], "n")
714 clean.append(f)
715 if wlock is not None:
716 self.dirstate.update([f], "n")
715 else:
717 else:
716 # we are comparing working dir against non-parent
718 # we are comparing working dir against non-parent
717 # generate a pseudo-manifest for the working dir
719 # generate a pseudo-manifest for the working dir
General Comments 0
You need to be logged in to leave comments. Login now