如何更改 git 中的特定字体颜色?

发布于 2024-10-20 21:33:31 字数 150 浏览 4 评论 0原文

我希望将 git 中的“红色”字体颜色更改为更接近粉红色的颜色。我倾向于将显示器保持得很暗,每当我查看差异时,黑色背景上的红色字体都很难阅读。那么,有没有办法指定我希望它使用不同的红色颜色,最好使用单个命令?

我在 Win7 上使用 msysgit 和 MINGW32。

I'm looking to change the 'red' font color in git to something that is more towards pink. I tend to keep my monitors pretty dim, and whenever I look through diffs, the red font on the black background is hard to read. So, is there a way to specify that I want it to use a different color for red, preferably using a single command?

I'm using msysgit with MINGW32 on Win7.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

剪不断理还乱 2024-10-27 21:33:31
git config --global color.status.updated magenta
git config --global color.status.changed magenta
git config --global color.status.untracked magenta
git config --global color.diff.old magenta

将“洋红色”替换为所需的任何颜色。请参阅 git-config文档了解更多详细信息。

git config --global color.status.updated magenta
git config --global color.status.changed magenta
git config --global color.status.untracked magenta
git config --global color.diff.old magenta

Substitute ”magenta” for whatever color desired. See the git-config documentation for more details.

执手闯天涯 2024-10-27 21:33:31

我相信 Git 仅使用终端颜色代码...因此您需要将终端的 ANSI 颜色代码映射更改为不同的颜色。执行此操作的方法(以及是否可能)因终端而异。

I believe Git just uses terminal color codes... so you'd need to change your terminal's ANSI color code mappings to a different color. The method of doing this (and whether it's even possible) varies depending on the terminal.

唠甜嗑 2024-10-27 21:33:31

我认为安德鲁的回答不是100%准确,color.status.updated默认颜色是绿色而不是红色。
所以我的答案是:

git config --global color.status.changed magenta
git config --global color.status.untracked magenta
git config --global color.diff.old magenta

I think Andrew's answer is not 100% accurate, color.status.updated default color is green not red.
So my answer would be:

git config --global color.status.changed magenta
git config --global color.status.untracked magenta
git config --global color.diff.old magenta
抱猫软卧 2024-10-27 21:33:31

也许检查您的终端配置文件颜色未设置为“共享系统主题”并确保您的终端背景为黑色。

我刚刚读到这篇文章,发现我的颜色几乎是黑色的,但实际上很浅,我从未注意到

Perhaps check your terminal profile colours are not set to "share system theme" and ensure your terminal background is black.

I just read this and discovered mine was some shade of almost black but actually quite light which i never noticed

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文