IDEA中git用Https方式pull和push 报error: git unable to read askpass response from

IDEA中git用Https方式pull和push 报error: unable to read askpass response from …如下图中的错误

IDEA中git用Https方式pull和push 报error: git unable to read askpass response from_第1张图片

明明在idea上第一次使用的时候选择了保存密码,过了一天又报这个错

解决方法

原因是在Windows的git bash中,IDEA中无法显示用户名和/或密码在单独的UI弹出提示符中询问框,所以才报错。执行以下命令禁用提示(清空全局变量core.askPass的值),执行完就能pull了

git config --global core.askPass""

你可能感兴趣的:(Git,IntelliJ,IDEA,git,intellij,idea)