Intellij 15 + Github - cannot clone repository, getting “Repository Test has Failed” error

后端 未结 8 1436
温柔的废话
温柔的废话 2020-12-31 10:49

I have Intellij 15 and a Github account, and I\'m trying to unite the two. I went into settings -> Version Control, and added Github with the Host and username and password

相关标签:
8条回答
  • 2020-12-31 11:00

    Setting->Version Control->GitHub check"Clone git repositories using ssh"

    0 讨论(0)
  • 2020-12-31 11:01

    in my case, after I un-check "clone git repositories using SSH" checkbox from settings/Version Control/github; it works on clone task.

    0 讨论(0)
  • 2020-12-31 11:04

    Try this in cmd

    git config --global http.sslVerify false
    

    If nothing works after

     Checking Accept non trusted certificates
    
    
    
    UnChecking "clone git repositories using SSH" checkbox
    
    0 讨论(0)
  • 2020-12-31 11:13

    Removing my other id from keychain fixed it for me. So make sure you have just one git id there

    0 讨论(0)
  • 2020-12-31 11:14

    try to change SSH executable from Build-in to Native.

    0 讨论(0)
  • 2020-12-31 11:21

    I was having this issue until I set the SSH-executable option to use Built-in SSH (just like you have). This immediately solved my problem and I wasn't getting the error anymore.


    Further options I am using include:

    • I have opted to use token authentication rather than a password
    • I am using the Windows Setup for git rather than a portable setup
    • And the path to git is set as C:\Program Files\Git\bin\git.exe

    Apart from these 3 options, my settings look exactly like yours. I am running windows 10 64bit and my version of IntelliJ is 2016.1.1

    0 讨论(0)
提交回复
热议问题