我按照git指南但在尝试连接到github时遇到了这个奇怪的问题:
$ ssh -v git@github.com
OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007
debug1: Reading configuration data /c/Documents and Settings/mugues/.ssh/config
debug1: Applying options for github.com
debug1: Connecting to github.com [207.97.227.239] port 22.
debug1: connect to address 207.97.227.239 port 22: Attempt to connect timed out without establishing a connection
ssh: connect to host github.com port 22: Bad file number
Run Code Online (Sandbox Code Playgroud)
这是我在.ssh下的配置文件
Host github.com
User git
Hostname github.com
PreferredAuthentications publickey
IdentityFile "C:\Documents and Settings\mugues\.ssh\id_rsa"
TCPKeepAlive yes
IdentitiesOnly yes
Run Code Online (Sandbox Code Playgroud)
任何的想法?
我想git clone https://github.com/org/project.git在CentOS盒子上做一个简单但是得到:
错误:请求的URL在访问https://github.com/org/project.git/info/refs时返回错误:401
致命:HTTP请求失败
它永远不会提示我输入我的用户名/密码,只是失败了.
我可以在我的Mac上拨打完全相同的电话没问题 - 我错过了什么?