D11158: largefile: use `update_file` instead of `normal` in `synclfdirstate`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Mon Jul 19 10:44:16 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This is the newer, more semantic API.
This was the last call to `normal` in largefile.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11158
AFFECTED FILES
hgext/largefiles/lfutil.py
CHANGE DETAILS
diff --git a/hgext/largefiles/lfutil.py b/hgext/largefiles/lfutil.py
--- a/hgext/largefiles/lfutil.py
+++ b/hgext/largefiles/lfutil.py
@@ -562,7 +562,7 @@
# state 'n' doesn't ensure 'clean' in this case
lfdirstate.normallookup(lfile)
else:
- lfdirstate.normal(lfile)
+ lfdirstate.update_file(lfile, p1_tracked=True, wc_tracked=True)
elif state == b'm':
lfdirstate.normallookup(lfile)
elif state == b'r':
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list