异常

1
2
# 在连接github时,执行”ssh -T git@github.com” 命令时,出现
ssh: connect to host github.com port 22: Connection timed out

解决

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 在存放公钥私钥(id_rsa和id_rsa.pub)的文件里,新建config文本
vim config
# 输入下面内容
Host github.com
User 注册github的邮箱
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443

# 最后:wq退出编辑即可

# 接着再执行,出现提示回车yes即可
ssh -T git@github.com