web-dev-qa-db-fra.com

Intellij incapable d'extraire de git

J'ai cloné un référentiel git existant. Git fonctionne bien lorsque je tire en ligne de commande. Cependant, lorsque j'essaie de faire la même chose avec Intellij, cela dit

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

Le journal de la console VCS indique:

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.

J'utilise la paire de clés ssh pour l'authentification. J'apprécierais toute aide sur ceci.

18
mindreader

Pour IntelliJ 13/14,

  1. Cliquez sur Fichier-> Paramètres. Le raccourci clavier est Ctrl+Alt+S.
  2. Recherchez "Version Control"
  3. Choisissez "Git" sous "version Control"
  4. Dans la liste déroulante des exécutables SSH, choisissez Native.
38
mindreader