PowerShell 中 Git status 输出文字颜色的修改

Posted ++向死而生++

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PowerShell 中 Git status 输出文字颜色的修改相关的知识,希望对你有一定的参考价值。

在PowerShell中使用Git,遇到一个问题,输出的文字里有暗红色的,实在太难辨认了。今天忍不了,查了一下解决办法,记录如下。

首先是Git的设置:

git config –global color.status.changed “yellow normal bold”
git config –global color.status.untracked “yellow normal bold”
git config –global color.branch.remote “yellow normal bold”

然后对PowerShell的设置:

用命令

$profile

查看需要修改的文件,在文件末尾添加

$global:GitPromptSettings.WorkingForegroundColor    = [ConsoleColor]::Yellow
$global:GitPromptSettings.UntrackedForegroundColor  = [ConsoleColor]::Yellow

我在使用中发现第二行不必要,反而会报错,注释掉即可。

以上是关于PowerShell 中 Git status 输出文字颜色的修改的主要内容,如果未能解决你的问题,请参考以下文章

如何在我的 PowerShell 提示符中显示我当前的 git 分支名称?

powershell 设置环境变量 -- go 单元测试 exit status 3221225781

如何在 Powershell(vs bash)中正确生成和应用 git 补丁?

PhpStorm、Windows 10 PowerShell 和 Git 命令

powershell Git,GitHub:仅从存储库中删除目录

Powershell下git中文乱码