什么环境变量设置Git Color.UI?

时间:2013-05-21 17:51:38

标签: git shell version-control

是否有一个Git环境变量指示color.ui配置选项?它似乎没有在文档中,如果有的话。

2 个答案:

答案 0 :(得分:2)

不幸的是,与其他一些设置不同,没有环境变量允许您覆盖color.ui配置选项。

唯一的方法当然是使用命令行:git config --global color.ui true您还可以直接编辑~/.gitconfig文件并添加所有这些颜色选项。所有这些信息都可以找到here。在〜/ .gitconfig文件中添加颜色:

[color]
  ui = auto
[color "branch"]
  current = yellow reverse
  local = yellow
  remote = green
[color "diff"]
  meta = yellow bold
  frag = magenta bold
  old = red bold
  new = green bold
[color "status"]
  added = yellow
  changed = green
  untracked = cyan

突出显示差异中的空白

[color]
  ui = true
[color "diff"]
  whitespace = red reverse
[core]
  whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol

答案 1 :(得分:0)

GIT_CONFIG_PARAMETERS="'color.ui=never'"

如果您愿意,可以将从不更改为自动始终

这不是一个记录在案的特性,但已经存在了很长一段时间,并且被 git 单元测试所覆盖。