dirstate: use `dirstate.change_files` to scope the change in `remove`
authorPierre-Yves David <pierre-yves.david@octobus.net>
Tue, 13 Dec 2022 16:29:30 +0100
changeset 50033 7e71d878c708
parent 50032 06619266679d
child 50034 5c9462adc4b9
dirstate: use `dirstate.change_files` to scope the change in `remove` This is the way.
mercurial/commands.py
--- a/mercurial/commands.py	Tue Dec 13 16:27:57 2022 +0100
+++ b/mercurial/commands.py	Tue Dec 13 16:29:30 2022 +0100
@@ -5947,7 +5947,7 @@
     if not pats and not after:
         raise error.InputError(_(b'no files specified'))
 
-    with repo.wlock():
+    with repo.wlock(), repo.dirstate.changing_files(repo):
         m = scmutil.match(repo[None], pats, opts)
         subrepos = opts.get(b'subrepos')
         uipathfn = scmutil.getuipathfn(repo, legacyrelativevalue=True)