分类: 其他UNIX
2013-06-10 12:40:07
新装的系统,不知为啥,”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