瀏覽代碼

Add support for $XDG_CONFIG_HOME/git/config and GIT_CONFIG_NOSYSTEM.

git also looks here.
Julian Berman 9 年之前
父節點
當前提交
5f4fa70c1f
共有 1 個文件被更改,包括 10 次插入3 次删除
  1. 10 3
      dulwich/config.py

+ 10 - 3
dulwich/config.py

@@ -380,12 +380,19 @@ class StackedConfig(Config):
     def default_backends(cls):
         """Retrieve the default configuration.
 
-        This will look in the users' home directory and the system
-        configuration.
+        See :manpage:`git-config(1)` for details on the files searched.
         """
         paths = []
         paths.append(os.path.expanduser("~/.gitconfig"))
-        paths.append("/etc/gitconfig")
+
+        xdg_config_home = os.environ.get(
+            "XDG_CONFIG_HOME", os.path.expanduser("~/.config/"),
+        )
+        paths.append(os.path.join(xdg_config_home, "git", "config"))
+
+        if "GIT_CONFIG_NOSYSTEM" not in os.environ:
+            paths.append("/etc/gitconfig")
+
         backends = []
         for path in paths:
             try: