Git shell 在 OpenSSH 弹出窗口中提示输入密码 window
Git shell prompts for password in an OpenSSH popup window
我不知道为什么,最近 git shell 要求我提供老式 OpenSSH window 中的凭据(顺便说一句,我使用 https 连接)只是在控制台中提示。
这使我无法使用 wincred,我总是必须输入我的凭据。非常烦人,特别是当我打错字时,控制台光标消失了。我怎样才能回到默认模式?
系统:Windows7
控制台:ConEmu
感谢帮助!
使用$ git config --global core.askPass ""
您还可以在配置中设置凭据,以防止每次都被提示 (https://git-scm.com/docs/gitcredentials)。
这也可能是由 Visual Studio Code
引起的。如果是这种情况,只需将 "git.autofetch": false
添加到您的 setting.json
文件中。
我不知道为什么,最近 git shell 要求我提供老式 OpenSSH window 中的凭据(顺便说一句,我使用 https 连接)只是在控制台中提示。
这使我无法使用 wincred,我总是必须输入我的凭据。非常烦人,特别是当我打错字时,控制台光标消失了。我怎样才能回到默认模式?
系统:Windows7
控制台:ConEmu
感谢帮助!
使用$ git config --global core.askPass ""
您还可以在配置中设置凭据,以防止每次都被提示 (https://git-scm.com/docs/gitcredentials)。
这也可能是由 Visual Studio Code
引起的。如果是这种情况,只需将 "git.autofetch": false
添加到您的 setting.json
文件中。