在OSX终端中获取git颜色


13

我刚刚为Mac安装了XCode和GitHub。我已经成功运行“ GitHub-> Install Command Line Utility”。我可以同时使用两个应用程序连接到存储库,并且可以在终端中使用git命令。

但是git命令不使用任何颜色(就像下面的屏幕快照一样)。

我该怎么做才能获得颜色(最好直接在OSX termianl中使用,但是额外的控制台也可以)。

彩色控制台中的git

Answers:


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

全局配置保存到~/.gitconfig,您也可以直接使用文本编辑器进行编辑。

git-config有关更多选项,请参见的手册。


奇怪,在Windows上我不必这样做。
bitbonk 2011年

1
@bitbonk:msysGit软件包带有系统范围的配置文件,该文件自动启用颜色。
user1686 2011年

我如何找出我从哪里来的git?我猜它只能是GitHub应用或XCode
bitbonk 2011年

2
的XCode 4支持的git本身:developer.apple.com/technologies/tools/...
bitbonk

1
我只打扰了最后一行(color.ui auto),现在它为我着色了。我认为您不需要休息。
泰勒·柯利尔
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.