gitconfig:git配置文件的位置

时间:2013-01-30 18:56:13

标签: git system global git-config

如何查找/列出全局用户配置文件?我的意思是“Git-native功能”,而不是find等Linux命令。

THX

1 个答案:

答案 0 :(得分:3)

this question中,评论指出了如何知道哪个文件与--system--global--local相关。

简而言之,您只需--edit使用git config

git config --system --edit
git config --global --edit
git config --local --edit

如果您将环境变量EDITOR替换为例如echo你可以在变量中接收它,即。你可以用编程方式使用它:

t=`EDITOR=echo git config --system --edit`
echo $t

在我的案例中打印/etc/gitconfig