git输出中的颜色?


10

我已经看到一些有关人们在git输出中获取颜色的示例。我尝试了以下指南http://scie.nti.st/2007/5/2/colors-in-git,但不幸的是它没有成功。

还有什么需要做的事情才能获得彩色输出?我正在将.oh-my-zsh与常规Ubuntu和该术语的色彩作品一起使用。

编辑:我正在从此示例中寻找颜色(在进行克隆时):http : //calip.so/quickstart-install-calipso.html

Answers:


15

你可以试试看

git config --global --add color.ui true

或者,您可以创建一个简单的〜/ .gitconfig开始。就像是。

[gui]
    recentrepo = /Users/name/Workspace/repo/src/stable
[user]
    name = name
    email = name@domain.com
[apply]
    whitespace = nowarn
[core]
    editor = vim
[color]
    diff = auto
    status = auto
    branch = auto

谢谢。如我所写,我已经尝试过了,但是还是没有颜色。好吧,没有颜色不完全正确。在进行快进时,我的颜色为+和-。我正在寻找更多颜色,例如现在发布的链接。
grm

所以这也不适合您吗?真奇怪。您使用的是哪个版本,平台。
CantGetANick 2011年

大声笑完全误解了你的问题。
CantGetANick 2011年

3

您发布的示例不应带有颜色。这仅仅是因为http://calip.so/所使用的博客引擎将预格式化的文本误认为是代码块,并突出标记了标记,就像它是程序源一样。

例如,//github.com/cliftonc/calipso.git因为不同颜色//标记的开始的注释在许多编程语言,和in/ var/ done/ using保留关键字

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.