D11191: largefile: use `update_file` instead of `drop` in `synclfdirstate`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Mon Jul 19 15:44:24 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.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11191
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
@@ -556,7 +556,7 @@
def synclfdirstate(repo, lfdirstate, lfile, normallookup):
lfstandin = standin(lfile)
if lfstandin not in repo.dirstate:
- lfdirstate.drop(lfile)
+ lfdirstate.update_file(lfile, p1_tracked=False, wc_tracked=False)
else:
stat = repo.dirstate._map[lfstandin]
state, mtime = stat.state, stat.mtime
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list