Intellij incapaz de buscar do git

18

Eu clonei um repositório git existente. O Git está funcionando bem quando eu puxo usando a linha de comando. No entanto, quando tento fazer o mesmo com o Intellij, diz

Fetch failed. Fatal : Could not read from remote repository.

O log do console do VCS mostra:

git fetch --progress --prune origin
java.lang.RuntimeException: Invocation failed Server returned invalid Response.
    at org.jetbrains.git4idea.ssh.GitSSHXmlRpcClient.askPassword(GitSSHXmlRpcClient.java:176)
    at org.jetbrains.git4idea.ssh.SSHMain.authenticate(SSHMain.java:265)
    at org.jetbrains.git4idea.ssh.SSHMain.start(SSHMain.java:157)
    at org.jetbrains.git4idea.ssh.SSHMain.main(SSHMain.java:137)
Caused by: java.io.IOException: Server returned invalid Response.
    at org.apache.xmlrpc.LiteXmlRpcTransport.sendRequest(LiteXmlRpcTransport.java:243)
    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.ssh.GitSSHXmlRpcClient.askPassword(GitSSHXmlRpcClient.java:170)
    ... 3 more
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.

Estou usando o par de chaves ssh para autenticação. Eu apreciaria qualquer ajuda sobre isso.

    
por mindreader 20.03.2014 / 00:05

1 resposta

38

Para o IntelliJ 13/14,

  1. Clique em Arquivo- > Definições. O atalho de teclado é Ctrl + Alt + S .
  2. Pesquise "Controle de versão"
  3. Escolha "Git" em "Controle de versão"
  4. No menu suspenso do executável SSH, escolha Nativo
por mindreader 20.03.2014 / 00:53