IDEA中 Git push失败

报错信息:

Invocation failed Server returned invalid Response.
java.lang.RuntimeException: Invocation failed Server returned invalid Response.
at org.jetbrains.git4idea.http.GitAskPassXmlRpcClient.askUsername(GitAskPassXmlRpcClient.java:50)
at org.jetbrains.git4idea.http.GitAskPassApp.main(GitAskPassApp.java:64)
Caused by: java.io.IOException: Server returned invalid Response.
at org.apache.xmlrpc.LiteXmlRpcTransport.sendRequest(LiteXmlRpcTransport.java:242)
at org.apache.xmlrpc.LiteXmlRpcTransport.sendXmlRpc(LiteXmlRpcTransport.java:90)
at org.apache.xmlrpc.XmlRpcClientWorker.execute(XmlRpcClientWorker.java:72)
at org.apache.xmlrpc.XmlRpcClient.execute(XmlRpcClient.java:194)
at org.apache.xmlrpc.XmlRpcClient.execute(XmlRpcClient.java:185)
at org.apache.xmlrpc.XmlRpcClient.execute(XmlRpcClient.java:178)
at org.jetbrains.git4idea.http.GitAskPassXmlRpcClient.askUsername(GitAskPassXmlRpcClient.java:47)
... 1 more
remote: No anonymous write access.
Authentication failed for 'ht... (show balloon)

解决方案:

将idea中的GitHub账号信息删除,重新登录解决。

1、依次点击 File -> Settings -> Version Control -> GitHub, 进行设置

IDEA中 Git push失败_第1张图片

2、重新登录GitHub账号:

IDEA中 Git push失败_第2张图片

3、重新将本地代码 push即可。

push成功

注:登录账号时可能遇到Invalid authentication data connection reset 问题。

解决办法:file->setting->system settings去掉代理,如图:

IDEA中 Git push失败_第3张图片

重新登录GitHub账号即可。

或者在登录账号时,Server里面添加https://  -->https://github.com

IDEA中 Git push失败_第4张图片

重新登录即可。

 

你可能感兴趣的:(IDEA,Git)