0

我正在尝试运行命令“git clone xxx.git”并显示错误:

ssh: connect to host port codebasehq.com 22: bad file number

怎么了?我可以做什么样的测试来找出问题所在?

4

2 回答 2

2

如果您在工作,可能是您的代理出错(即您没有正确设置它)。

看:

git SSH issue bad file number
and
another SSH issue bad file number post

于 2012-04-13T17:08:52.747 回答
0

我的问题的解决方案是在 CONFIG 文件夹中创建文件。ssh 内容如下:

Host codebasehq.com
    User git
    Hostname ssh.codebasehq.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa
    Port 443
于 2012-04-17T12:52:39.667 回答