我已經在遠程服務器上的git repo。我有ssh訪問這臺服務器。當我嘗試用命令git clone ssh://[email protected]_addres:9022/repo.git
克隆回購時,我無法克隆它。出現的錯誤是 git clone ssh://[email protected]_address:9022/repo.git Cloning into repo... fatal: '/repo.git' does not appear to be a git repository fatal: The remote end hung up unexpectedly
Git遠程克隆
Q
Git遠程克隆
1
A
回答
1
如果您使用名稱login登錄該計算機並執行cd /repo.git
,您會得到什麼?
你可能缺少倉庫路徑...
1
只是一個(合法的;))猜
git clone ssh://[email protected]_adress:9022/~nick/repo.git
這是@Matthieu答案的結果。我不假設,你的服務器的根目錄下有一個目錄repo.git
。這個答案預計,回購是在'尼克的家。
+0
沒有問題是一樣的。 – 2011-04-12 20:17:45
相關問題
- 1. Git克隆 - 無法克隆遠程存儲庫
- 2. 從本地到遠程的git克隆
- 3. git遠程克隆的正確語法
- 4. gulp-git。從bitbucket克隆遠程repo
- 5. 克隆遠程git存儲庫問題
- 6. Git:叉/遠程/克隆概念
- 7. 將遠程git克隆到本地
- 8. 沒有git遠程添加源代替git克隆
- 9. TortoiseGit克隆遠程分支
- 10. Git進程誤克隆
- 11. Git和克隆
- 12. * git svn克隆*
- 13. 使用git克隆git不能克隆回購:// ... - 使用git克隆http://
- 14. GIT:克隆工程,遠程推送不。遠程存儲庫通過copssh
- 15. git svn克隆結果無法克隆
- 16. 克隆遠程分支導致克隆所有遠程分支...爲什麼?
- 17. git克隆或git獲取
- 18. git克隆失敗,git gc
- 19. 克隆git回購
- 20. Git克隆錯誤
- 21. 腳本git克隆
- 22. TortoiseGit - Git的克隆
- 23. 自動GIT克隆
- 24. Git克隆失敗
- 25. git克隆錯誤
- 26. 克隆git倉庫
- 27. 同步Git克隆
- 28. git:將更改上傳到克隆的遠程存儲庫
- 29. 如何將我的git reposity克隆到遠程機器上?
- 30. Git克隆與添加遠程?使用哪個?
當我輸入'git:// ip_addres/repo.git'時,一切都很好。 – 2011-04-12 20:15:05
據我記得'git:'的默認端口是'9418'。另一方面,'git:'不是'ssh:'而是其他協議,所以你可以確定你的服務器已經啓動並運行了一個ssh服務器,並且它監聽你的首選端口'9022'(默認爲ssh '22')?試試'ssh nick @ ip_adress:9022' – KingCrunch 2011-04-12 20:21:23
我嘗試'ssh nick @ ip_adress:9022'並開始工作。 – 2011-04-12 20:23:24