Mercurial > hg-stable
changeset 43487:0371a8c84827
largefiles: delete obsolete and unused repo.push()
The function was removed from localrepo in 4d52e6eb98ea (locarepo:
remove the `push` method (API), 2014-09-25).
Differential Revision: https://phab.mercurial-scm.org/D7174
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Thu, 24 Oct 2019 11:12:17 -0700 |
parents | bec734015b70 |
children | bfc68404cccd |
files | hgext/largefiles/reposetup.py |
diffstat | 1 files changed, 0 insertions(+), 14 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/largefiles/reposetup.py Tue Oct 22 10:01:48 2019 -0400 +++ b/hgext/largefiles/reposetup.py Thu Oct 24 11:12:17 2019 -0700 @@ -360,20 +360,6 @@ ) return result - def push(self, remote, force=False, revs=None, newbranch=False): - if remote.local(): - missing = set(self.requirements) - remote.local().supported - if missing: - msg = _( - b"required features are not" - b" supported in the destination:" - b" %s" - ) % (b', '.join(sorted(missing))) - raise error.Abort(msg) - return super(lfilesrepo, self).push( - remote, force=force, revs=revs, newbranch=newbranch - ) - # TODO: _subdirlfs should be moved into "lfutil.py", because # it is referred only from "lfutil.updatestandinsbymatch" def _subdirlfs(self, files, lfiles):