diff -r cc438f793b98 -r 485ae37a7ec5 mercurial/dirstate.py --- a/mercurial/dirstate.py Mon Jul 19 01:17:56 2021 +0200 +++ b/mercurial/dirstate.py Mon Jul 19 14:02:58 2021 +0200 @@ -478,6 +478,10 @@ elif not entry.tracked: self.normallookup(filename) return True + # XXX This is probably overkill for more case, but we need this to + # fully replace the `normallookup` call with `set_tracked` one. + # Consider smoothing this in the future. + self.set_possibly_dirty(filename) return False @requires_no_parents_change