Git 无法作为源提供者从 VSCode 访问

Git is not accessible as a source provider from VSCode

无法确定 Git 在 Windows 10 上 VSCode(最新的 1.23.1)集成中缺少的内容。

已安装 Git 2.17.0。

在系统范围的路径中得到它。

在我的用户设置中得到这个

 {
    "git.enabled": true,
    "git.path": "C:\Git\bin\git.exe"
 }

Git 在内置 VSCode 终端中清晰可见:

Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

PS C:\Users\myself> git --version
git version 2.17.0.windows.1

"active source control providers" 中仍然没有任何内容,并且那里没有可用的 Git 图标。

怎么了?

P.S.None这个

或者那个

两者都有效。

如果工作区中没有存储库,则 VSCode 将显示消息

There are no active source control providers

如果您希望将存储库克隆到您的工作区中,您可以使用 the VSCode doc page on source management's section on cloning a repository

中描述的命令 Git: Clone

或者要初始化一个新的存储库,您可以使用同一文档的 initialize a repository 部分中描述的类似有用的 Git: Initialize repository 命令(顺便说一下,该部分描述了您看到的消息)。然而,这在内置源代码管理选项卡的右上角有一个匹配按钮。

如果您还不知道,可以使用键盘快捷键访问命令面板:

Shift/Cmd+P

F1