2012-02-25 829 views
1

我必须通过SSH在CentOS服务器上安装应用程序。 如果我在命令git clone -v git://github.com/AKSW/RDFauthor.git libraries/RDFauthor启动makefile文件汇编停止与此错误:Git - 远端意外挂断

fatal: The remote end hung up unexpectedly

可能是什么问题呢?

回答

2

这是使用git协议(端口9418),它可能被阻止。尝试在makefile中使用https(https://github.com/AKSW/RDFauthor.git)url。

+0

是的,现在它可以工作,但最后我有这样的警告:make:warning:检测到时钟偏斜。您的构建可能不完整。 – frakorn 2012-02-26 10:56:33

+0

@frakorn - 这是你的makefile中的东西,与git /这个问题无关。 – manojlds 2012-02-26 11:00:27

0

我有,当我做了从GitHub帮助下面的命令相同的错误消息:

$ git remote add upstream git://github.com/octocat/Spoon-Knife.git 
$ git fetch upstream 

当我使用下面的语法插入到远程仓库的错误已得到纠正:

$ git remote add upstream [email protected]:octocat/Spoon-Knife.git 
相关问题