[Git] ssh: connect to host github.com port 22: Connection timed out

[问题描述]
我是在将博客部署到github上的时候遇到的;

1
ssh: connect to host github.com port 22: Connection timed out

[问题解决]

1
2
3
4
5
6
vim ~/.ssh/config

# 加上以下内容:
Host github.com
Hostname ssh.github.com
Port 443

之后就可以正常将博客部署到github上了