# HG changeset patch # User Augie Fackler # Date 2020-03-07 23:00:53 # Node ID 21893ff382cd9dfde34200492fe2ec3fe11031bf # Parent 8b5f5d8ad78372f068f7bdc39db6ba50627581ea localrepo: add git extension to autoextensions list Differential Revision: https://phab.mercurial-scm.org/D8266 diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -699,6 +699,7 @@ def afterhgrcload(ui, wdirvfs, hgvfs, re # Map of requirements to list of extensions to load automatically when # requirement is present. autoextensions = { + b'git': [b'git'], b'largefiles': [b'largefiles'], b'lfs': [b'lfs'], }