如何通过 git 加载任意配置文件?

如何通过 git 加载任意配置文件?

我正在尝试在 git 中加载配置文件,但该文件不在默认存储位置之一。我尝试这样做git config --file .gitconfig(当我在包含该文件的正确目录中时.gitconfig),但 git 响应了我一条标准帮助消息。即:

usage: git config [options]

Config file location
    --global              use global config file
    --system              use system config file
    --local               use repository config file
    -f, --file <file>     use given config file

etc.

答案1

可能你想做:

$ git config --local include.path "$PWD/.gitconfig"

这将包括本地.gitconfig文件。

答案2

如果您想将其用作全局配置文件,请将其复制到您的主目录:

cp .gitconfig ~/

看起来,设置命令的文件git config是为了满足您需要--get特定设置的情况。

相关内容