oh-my-zsh - Windows 终端 + oh-my-posh 不显示 git 状态

标签 oh-my-zsh windows-terminal posh-git

我已经在我的 Windows 终端中安装了 oh-my-posh 和 posh-git,但是它没有跟踪任何 git 更改,如图所示。不管我做了什么改变,它只是显示如下,没有状态:
enter image description here
我也尝试过不使用 posh-git,因为我认为 oh-my-posh 默认具有此功能,但结果仍然相同。
这是我的 oh-my-posh 主题:

{
  "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
  "blocks": [
    {
      "alignment": "left",
      "segments": [
        {
          "background": "#91ddff",
          "foreground": "#100e23",
          "powerline_symbol": "",
          "properties": {
            "folder_icon": "",
            "folder_separator_icon": "  ",
            "home_icon": "",
            "style": "agnoster"
          },
          "style": "powerline",
          "type": "path"
        },
        {
          "background": "#95ffa4",
          "foreground": "#193549",
          "powerline_symbol": "",
          "style": "powerline",
          "type": "git"
        },
        {
          "background": "#906cff",
          "foreground": "#100e23",
          "powerline_symbol": "",
          "properties": {
            "prefix": "  "
          },
          "style": "powerline",
          "type": "python"
        },
        {
          "background": "#ff8080",
          "foreground": "#ffffff",
          "powerline_symbol": "",
          "style": "powerline",
          "type": "exit"
        }
      ],
      "type": "prompt"
    }
  ],
  "final_space": true
}

最佳答案

在这里找到答案:https://ohmyposh.dev/docs/git/ .
显然,默认情况下 git status 是禁用的,因此您需要在 git 配置中添加一个属性部分:

{
  "type": "git",
  "style": "powerline",
  "powerline_symbol": "\uE0B0",
  "foreground": "#193549",
  "background": "#ffeb3b",
  "properties": {
    "display_status": true,
    "display_stash_count": true,
    "display_upstream_icon": true
  }
}
也可以使用 posh-git:
{
  "type": "poshgit",
  "style": "powerline",
  "powerline_symbol": "\uE0B0",
  "foreground": "#ffffff",
  "background": "#0077c2"
}

关于oh-my-zsh - Windows 终端 + oh-my-posh 不显示 git 状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68228173/

相关文章:

json - Windows 终端选项卡快捷方式不起作用、类型不正确、预期对象

windows - windows终端预览exe文件路径和名称

c++ - 是否可以创建比屏幕更大的 Windows 终端? C++

powershell - 没有在 Powershell 中获取 Cascadia Code PL

git - Powershell 在每次 pull 时而不是在启动时要求 git RSA 密码?

shell - 为什么 zsh 无法从脚本中的路径读取 ~ (波浪号)?

Python 在 MacOS 10.15 Beta (19A582a) 上崩溃,错误代码为 "/usr/lib/libcrypto.dylib"

shell - ZSH Agnoster 主题显示机器名称

Bash 补全在 ZSH/Oh-My-ZSH 中不起作用,因为 COMP_WORDS 不是数组

powershell - 在 Visual Studio 包管理器中安装 posh-git