我必须通过SSH在CentOS服务器上安装应用程序。
如果我在命令git clone -v git://github.com/AKSW/RDFauthor.git libraries/RDFauthor
处启动makefile,编译将停止并显示以下错误:
致命:远程端意外挂断
可能是什么问题?
答案 0 :(得分:2)
那是使用git协议(端口9418),可能会被阻止。尝试使用makefile中的https(https://github.com/AKSW/RDFauthor.git)url。
答案 1 :(得分:0)
当我从Github帮助中发出以下命令时,我收到了相同的错误消息:
$ git remote add upstream git://github.com/octocat/Spoon-Knife.git
$ git fetch upstream
使用以下语法插入远程存储库时,错误已得到纠正:
$ git remote add upstream git@github.com:octocat/Spoon-Knife.git