sparse: use `update_file` instead of `normal` in `refreshwdir`
authorPierre-Yves David <pierre-yves.david@octobus.net>
Mon, 19 Jul 2021 01:58:34 +0200
changeset 47710 3148204e649e
parent 47709 a0e79084389d
child 47711 b492bc018011
sparse: use `update_file` instead of `normal` in `refreshwdir` This is the newer, more semantic API. Differential Revision: https://phab.mercurial-scm.org/D11152
mercurial/sparse.py
--- a/mercurial/sparse.py	Mon Jul 19 01:58:24 2021 +0200
+++ b/mercurial/sparse.py	Mon Jul 19 01:58:34 2021 +0200
@@ -565,7 +565,7 @@
 
     # Fix dirstate
     for file in added:
-        dirstate.normal(file)
+        dirstate.update_file(file, p1_tracked=True, wc_tracked=True)
 
     for file in dropped:
         dirstate.drop(file)