GitHub 的密码缓存助手无法识别路径中的 git

GitHub 的密码缓存助手无法识别路径中的 git

我正在尝试在底部设置 GitHub 推荐用于 Windows 7 的密码缓存实用程序这一页。当我运行安装程序时,它告诉我在我的路径环境变量中找不到 GIT。我已经使用 git 很长一段时间了,它肯定已经安装了。

我将其添加到 PATH 系统变量的末尾:

C:\Program Files (x86)\Git\bin;

并尝试再次运行安装程序,但它仍然无法识别它。它说我可以通过运行

git-credential-winstore -i C:\Path\To\Git.exe

我不知道该怎么做 - git-credential-winstore.exe 是下载文件的名称。我尝试在命令窗口中像这样运行它:

C:\Users\estrom\Downloads>git-credential-winstore -i C:\Program Files (x86)\Git\bin

像这样:

C:\Users\estrom\Downloads>git-credential-winstore -i C:\Program Files (x86)\Git\bin\git.exe

在两种情况下,我都会收到相同的错误消息:

Unhandled Exception: System.ComponentModel.Win32Exception: The system cannot find the file specified

   at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
   at System.Diagnostics.Process.Start()
   at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
   at Git.Credential.WinStore.Program.InstallTheApp(String pathToGit, Boolean silent)
   at Git.Credential.WinStore.Program.Main(String[] args)

我是一名 Linux 女孩,但真的不熟悉如何在 Windows 中执行此操作。我做错了什么?

答案1

我联系了 GitHub 的支持人员,他们提供了以下信息:

C:\Users\estrom\Downloads>git-credential-winstore -i "C:\Program Files (x86)\Git\bin\git.exe"

相关内容