1

我有 git 的奇怪行为 - 推送正在工作,但克隆不是:(

alec$ git clone git://host/repo.git
Initialized empty Git repository in /Users/alec/Temp/repo/.git/
host[0: x.x.x.x]: errno=Connection refused
fatal: unable to connect a socket (Connection refused)

怎么了?

4

2 回答 2

1

Push 可能在 SSH(端口 22)上工作,但 clone 在 git 端口(端口 9418)上工作。如果您希望能够克隆存储库,您(或您的网络管理员)将必须打开此端口。

于 2010-04-23T09:46:54.513 回答
0

尝试使用 Github 或 Bitbucket (Sourcetree) 应用程序。它们通常有较少的错误,并且可以完成命令行所做的大部分工作。我使用 bitbucket 是因为他们的 GUI git 应用程序很复杂并且提供了很多选项。

Bitbucket http://bitbucket.org GitHub http://github.com

于 2013-09-22T23:11:25.110 回答