D11111: largefile: use `set_untracked` in the override of copy/rename
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sun Jul 18 21:53:36 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This is the new shiny API
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11111
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
@@ -857,7 +857,7 @@
# The file is gone, but this deletes any empty parent
# directories as a side-effect.
repo.wvfs.unlinkpath(srclfile, ignoremissing=True)
- lfdirstate.remove(srclfile)
+ lfdirstate.set_untracked(srclfile)
else:
util.copyfile(repo.wjoin(srclfile), repo.wjoin(destlfile))
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list