2012-02-25 83 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 
相關問題