$ ssh -T git@github.com ssh: connect to host ssh.github.com port 22: Connection timed out

Posted wangyong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$ ssh -T git@github.com ssh: connect to host ssh.github.com port 22: Connection timed out相关的知识,希望对你有一定的参考价值。

在C:/用户/用户名/.ssh中添加几个文件

之前的电脑生成都是四个文件,分别是 id_rsa  id_rsa.pub  config known_hosts

不知道为什么在另一台电脑上却生成两个文件  id_rsa  id_rsa.pub

原来这两个文件也能使用,只不过最近在研究git,发现clone失败,SSH key不能连接。

无奈只能添加两个文件如下:

config

Host github.com
    User git
    Hostname ssh.github.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa
    Port 443

至于另一个文件需不需要我也不清楚

以上是关于$ ssh -T git@github.com ssh: connect to host ssh.github.com port 22: Connection timed out的主要内容,如果未能解决你的问题,请参考以下文章

github 配置了公钥依旧提示git@github.com‘s password: Permission denied, please try again. 的解决办法

github 配置了公钥依旧提示git@github.com‘s password: Permission denied, please try again. 的解决办法

github 配置了公钥依旧提示git@github.com‘s password: Permission denied, please try again. 的解决办法

(已解决)npm ERR! command failed npm ERR! command git ls-remote ssh://git@github.com/nhn/raphael.git

ssh -vT git@github.com get “ No such file or directory” 错误

如何为本地 git (github) 存储库永久添加 SSH 密钥? [复制]