当 git-gui 窗口打开时,git 无法读取密码(Windows 10)

问题描述 投票:0回答:1

最近我开始收到此错误,但前提是我还打开了 git-gui 窗口。 如果 git-gui 窗口关闭,相同的命令可以正常工作。

我在 Windows 10 的 Windows 终端中运行 git v2.47.0。 Git credential.helper 设置为“manager”

这以前工作得很好,不确定具体是什么时候开始的,可能是几周前。 知道发生了什么以及如何预防吗?

# git fetch --all
error: failed to execute prompt script (exit code 5)
fatal: could not read Password for 'https://[email protected]': No such file or directory

这是命令和响应的屏幕截图

enter image description here

git windows-10 git-gui
1个回答
0
投票

假设您使用的是最新的 Git for Windows v2.47.0.windows.2(2024 年 10 月),这可能是此线程中讨论的 Git GUI 错误的副作用。

它涉及将

SSH_ASKPASS
设置为
c:/Program Files/Git/mingw64/bin/git-askpass.exe
,并涉及 SSH URL,但
git-askpass.exe
也用于 HTTPS URL。

© www.soinside.com 2019 - 2024. All rights reserved.