如何在.gitconfig中列出所有颜色?

时间:2018-04-04 08:41:26

标签: git git-config

有没有简单的方法可以查看为git配置的所有颜色设置?我可以做一个

git config -l | grep -F color

但是考虑到 git config 中的许多列表选项,我想知道是否有更简单的方法,而不涉及管道。

我试过

git config --get color
git config --get-all color
git config --get-color default

但前两个只是抱怨没有“颜色”部分,而最后一个没有产生任何输出。 BTW,git config --get-color addedgit config --get-color status.added也没有输出任何东西,所以我想知道如何使用--get-color选项。

1 个答案:

答案 0 :(得分:2)

git config --help声明您可以这样做:

git config --get-regexp color

这应该大致相当于您的命令,而不使用管道。 (这只检查配置变量名称,因此它找不到其值包含字符串"color"的配置变量,除非它也在配置变量名称中)