From patchwork Tue Aug 20 15:01:53 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D6748: hgit: define invalidatecaches for gitstore() From: phabricator X-Patchwork-Id: 41357 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Tue, 20 Aug 2019 15:01:53 +0000 pulkit created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D6748 AFFECTED FILES hgext/git/__init__.py CHANGE DETAILS To: pulkit, #hg-reviewers Cc: mercurial-devel diff --git a/hgext/git/__init__.py b/hgext/git/__init__.py --- a/hgext/git/__init__.py +++ b/hgext/git/__init__.py @@ -71,6 +71,9 @@ # TODO handle storenarrowmatch and figure out if we need the repo arg return gitlog.manifestlog(self.git, self._db) + def invalidatecaches(self): + pass + def _makestore(orig, requirements, storebasepath, vfstype): if (os.path.exists(os.path.join(storebasepath, 'this-is-git')) and os.path.exists(os.path.join(storebasepath, '..', '.git'))):