git 输出中的颜色?

git 输出中的颜色?

我见过一些关于人们在 git 输出中获得颜色的例子。我尝试了以下指南http://scie.nti.st/2007/5/2/colors-in-git但不幸的是它没有成功。

还需要做什么才能获得彩色输出吗?我将 .oh-my-zsh 与常规 Ubuntu 一起使用,并且在术语中可以使用颜色。

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

答案1

你可以尝试一下。

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

或者您可以创建一个简单的 ~/.gitconfig 来开始。类似于。

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

答案2

你发布的例子不应该是彩色的;这只是因为博客引擎使用的http://calip.so/将预格式化的文本错误地视为代码块,并突出显示标记,就好像它是程序源代码一样。

例如,//github.com/cliftonc/calipso.git颜色不同,因为//标志着评论在许多编程语言中,in/ var/ done/using是保留的关键词

相关内容