D11016: context: use `dirstate.set_tracked` for `revert`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Thu Jul 8 07:34:56 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This is the new shinny API.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11016
AFFECTED FILES
mercurial/cmdutil.py
CHANGE DETAILS
diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py
--- a/mercurial/cmdutil.py
+++ b/mercurial/cmdutil.py
@@ -3693,7 +3693,7 @@
if f not in newlyaddedandmodifiedfiles:
prntstatusmsg(b'add', f)
checkout(f)
- repo.dirstate.add(f)
+ repo.dirstate.set_tracked(f)
normal = repo.dirstate.normallookup
if node == parent and p2 == repo.nullid:
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list