- 安装Git: 确保你已经安装了Git。你可以从Git官网下载并安装。
- 安装Posh-Git模块: 打开PowerShell,运行以下命令安装Posh-Git模块:
Install-Module -Name posh-git -Scope CurrentUser
如果系统提示你是否信任模块源,选择Yes
。
- 安装Oh-My-Posh(可选): Oh-My-Posh是另一个PowerShell提示工具,可以美化你的终端。你可以使用以下命令安装:
Install-Module -Name oh-my-posh -Scope CurrentUser
- 配置PowerShell配置文件: 打开你的PowerShell配置文件(通常是$PROFILE),你可以使用以下命令:
notepad $PROFILE
添加以下行来导入Posh-Git和Oh-My-Posh模块:
Import-Module posh-git
Import-Module oh-my-posh
确保这两个模块的导入语句在你的$PROFILE
文件中的最后。
- 设置提示主题(可选): 如果你安装了Oh-My-Posh,你可以设置提示主题。例如,你可以使用以下命令选择一个主题:
Set-Theme Agnoster
重启PowerShell: 为了使更改生效,关闭并重新启动PowerShell。
这样,你的PowerShell终端应该开始显示Git状态的提示了。