我在远程服务器上创建了一个git repo
我想通过netbeans访问该回购。我关注
team->git->clone
这是错误的屏幕截图
这是吉特回购头寸。
http://mobimage.co/index.php?i=b93e28
这是回购地址:http://188.226.161.12/repo.git/
如果要在https
上连接git,必须在C:Usersusername.gitconfig
中添加一些配置数据
sslVerify = false[http]
通过命令行
git config --global http.sslVerify false
您是否已将远程服务器设置为支持http?
如果不是,只需创建ssh密钥ssh-keygen -t rsa -C "email"
并将私钥上传到远程服务器。
现在您可以通过ssh克隆它了。
如果您不想添加ssh密钥,请使用https://
prototocol,它会为您升级tpassword。