无法连接到netbeans

时间:2015-06-27 23:38:10

标签: git netbeans remote-server

我在远程服务器上创建了一个git repo 我想通过netbeans访问该repo。 我跟着

team->git->clone

这是错误的屏幕截图

这是git repo的位置。

http://mobimage.co/index.php?i=b93e28

这是回购地址: http://188.226.161.12/repo.git/

2 个答案:

答案 0 :(得分:5)

如果你想在https上连接git,你必须在C:Users\username\.gitconfig

中添加一些配置数据
sslVerify = false[http]

按命令行

git config --global http.sslVerify false

答案 1 :(得分:0)

您是否已将远程服务器设置为支持http?

如果不是简单地创建ssh密钥ssh-keygen -t rsa -C "email"并将私钥上传到远程服务器。

现在您可以通过ssh克隆它。

如果您不想添加ssh密钥,请使用https://原型协议,它会为您提供tpassword。