localrepo: add git extension to autoextensions list
authorAugie Fackler <raf@durin42.com>
Sat, 07 Mar 2020 18:00:53 -0500
changeset 44482 21893ff382cd
parent 44481 8b5f5d8ad783
child 44483 2e464925f662
localrepo: add git extension to autoextensions list Differential Revision: https://phab.mercurial-scm.org/D8266
mercurial/localrepo.py
--- a/mercurial/localrepo.py	Sat Mar 07 17:44:55 2020 -0500
+++ b/mercurial/localrepo.py	Sat Mar 07 18:00:53 2020 -0500
@@ -699,6 +699,7 @@
     # 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'],
     }