让git彩色显示

三 10th, 2012

新装的系统,不知为啥,”git diff, git status”默认单色显示,看起来很不直观。于是查了下资料,配置一下即可。
先来张效果图:

配置命令:

git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
git config --global color.interactive auto
git config --global color.ui auto

也可以直接编辑~/.gitconfig,其实上面的命令就是往这个文件中添加了这些配置项。

[color]
    diff = auto
    branch = auto
    status = auto
    interactive = auto

查看自己都有哪些配置

git config --list
标签:
>>原创文章,欢迎转载。转载请注明:转载自Ruby迷,谢谢!
>>原文链接地址:让git彩色显示
  1. GM Tech
    三 12th, 201210:44

    很好的文章,很不错,我喜欢!

  2. PikachuEXE
    三 12th, 201210:00

    用惯了GUI=w=

    • 老宋
      三 12th, 201212:32

      GUI和CLI我都用。一般小改我会用CLI,快捷。大改会用GUI,毕竟操作直观,以防遗漏。

Cancel reply