Submitter | phabricator |
---|---|
Date | Oct. 5, 2021, 11:44 a.m. |
Message ID | <differential-rev-PHID-DREV-66trsme5sdi5nk6flrrz-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/49935/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/hgext/largefiles/overrides.py b/hgext/largefiles/overrides.py --- a/hgext/largefiles/overrides.py +++ b/hgext/largefiles/overrides.py @@ -1636,18 +1636,6 @@ for standin in orphans: repo.wvfs.unlinkpath(standin, ignoremissing=True) - lfdirstate = lfutil.openlfdirstate(ui, repo) - with lfdirstate.parentchange(): - orphans = set(lfdirstate) - lfiles = lfutil.listlfiles(repo) - for file in lfiles: - lfutil.synclfdirstate(repo, lfdirstate, file, True) - orphans.discard(file) - for lfile in orphans: - lfdirstate.update_file( - lfile, p1_tracked=False, wc_tracked=False - ) - lfdirstate.write() return result