D11109: largefile: directly use set_untracked() for removing files
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sun Jul 18 21:53:25 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This is new shiny API.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11109
AFFECTED FILES
hgext/largefiles/overrides.py
CHANGE DETAILS
diff --git a/hgext/largefiles/overrides.py b/hgext/largefiles/overrides.py
--- a/hgext/largefiles/overrides.py
+++ b/hgext/largefiles/overrides.py
@@ -227,9 +227,7 @@
repo[None].forget(remove)
for f in remove:
- lfutil.synclfdirstate(
- repo, lfdirstate, lfutil.splitstandin(f), False
- )
+ lfdirstate.set_untracked(lfutil.splitstandin(f))
lfdirstate.write()
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list