unable to read askpass response from 'C:\Users\..\..\intellij-git-askpass.bat' could read name from

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/weixin_38500014/article/details/82995281

错误信息:

Can't finish GitHub sharing process
            unable to read askpass response from 'C:\Users\username\.IntelliJIdea2016.3\system\tmp\intellij-git-askpass25.bat'
            failed to execute prompt script (exit code 1)
            could not read Username for 'https://github.com': No error

出现这个错是因为你的git配置错误,然后导致push到远程github一直失败报错,本人一开始以为是ssh公钥问题,各种琢磨都无果,最后打开git bash切入到你的项目目录,然后

$ vim .git/config

修改remote.origin.url变量为 https://[userName]:[password]@github.com/[username]/project.git

如图所示 

配置用户名和邮箱如

$ git config user.name wwclr

$ git config user.email [email protected]

查看当前git配置  & git config --list

ok,问题解决,push成功

猜你喜欢

转载自blog.csdn.net/weixin_38500014/article/details/82995281