我想给git-status输出着色,以便:
untracked files = magenta
new files = green
modified files = blue
deleted files = red
相反,我看到绿色的暂存文件和蓝色的未暂存文件:
我的.gitconfig是根据一些搜索设置的:
[color]
status = auto
[color "status"]
added = green
changed = blue
untracked = magenta
deleted = red
2
注意:git 2.9.1支持斜体和罢工属性。请参阅下面的编辑。
—
VonC
下面的答案是否解决了您的问题?
—
VonC