changeset 50032:06619266679d

dirstate: use `dirstate.change_files` to scope the change in `forget` This is the way.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 13 Dec 2022 16:27:57 +0100
parents b979cdde99e6
children 7e71d878c708
files mercurial/commands.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/commands.py	Tue Dec 13 15:07:32 2022 +0100
+++ b/mercurial/commands.py	Tue Dec 13 16:27:57 2022 +0100
@@ -2966,7 +2966,7 @@
     if not pats:
         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)
         dryrun, interactive = opts.get(b'dry_run'), opts.get(b'interactive')
         uipathfn = scmutil.getuipathfn(repo, legacyrelativevalue=True)