我在家工作,试图从 Github 克隆一个 repo,但出现以下错误:
git clone https://github.com/account/repo.git
也试过
git clone git://github.com/account/repo.git
Error: Failed connect to github.com:443; No error while accessing https://github.com/account/repo/info/refs?service=git-upload-pac
fatal: HTTP request failed
我什至尝试使用 SSH,这就是我得到的:
ssh:连接到主机 github.com 端口 22:错误文件号致命:无法从远程存储库读取。
我只是能够在我的笔记本电脑上克隆它,所以我知道我有正确的权限,我只需要帮助试图弄清楚为什么会在我的桌面上发生这种情况,而且似乎所有其他建议似乎都不是在职的。
- 我没有使用代理。
- 我也不能对已经存在的其他存储库进行拉取。
编辑 好的,我运行了建议的命令,结果如下:
$ ssh -i ~/.ssh/id_rsa -vvv git@github.com
OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007
debug2: ssh_connect: needpriv 0
debug1: Connecting to github.com [204.232.175.90] port 22.
debug1: connect to address 204.232.175.90 port 22: Not owner
ssh: connect to host github.com port 22: Bad file number
有什么建议么?