ssh: connect to host github.com port 22: Connection timed out
1 | ssh: connect to host github.com port 22: Connection timed out |
1. 检查SSH是否连接成功
1 | ssh -T git@github.com |
2. 配置文件
新建
config
文件编辑配置文件
1
2
3
4
5
6Host github.com
User YourEmail@163.com #只需要改邮箱
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443执行
ssh -T git@github.com
,输入yes
即可。
之后就能上传代码了。