如何在Windows上使用git mintty mingw获得彩色输出?

前端之家收集整理的这篇文章主要介绍了如何在Windows上使用git mintty mingw获得彩色输出?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经安装了官方的 Windows git发行版,我安装了一个最近的mingw,并进入了那个薄荷终端.然后我将我的git安装复制到这个mingw安装中,现在它可以在内部工作.我唯一的问题是git输出没有着色.我怀疑这是因为windows git端口试图使用windows控制台颜色thingie而不是mintty能够解释的ANSI颜色代码.是否有可能让git使用ANSI颜色代码

(我之前尝试过cygwin设置,但性能非常非常糟糕,我找不到任何解决方案).

git-config

If this is set to always,git-diff(1),git-log(1),and git-show(1) will use color for all patches. If it is set to true or auto,those commands will only use color when output is to the terminal. Defaults to false.

它看起来像git不是薄荷作为终端.对我来说总是使用而不是真/自动帮助:

[color]
  status = always

通过向diff命令添加–color标志来强制颜色(使用diff = true):

git diff --color
原文链接:https://www.f2er.com/windows/365065.html

猜你在找的Windows相关文章