Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 660 Bytes

trouble-shooting.md

File metadata and controls

26 lines (17 loc) · 660 Bytes

Trouble shooting

Git 的 22 端口超时

ssh -T [email protected]

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

当 GitHub 防火墙出现拒绝连接时,ssh 无法通过 22 端口进行访问,这时可以通过 HTTPS 端口进行 SSH 访问。

编辑 ~/.ssh/config 文件,添加以下内容:

Host github.com
    Hostname ssh.github.com
    Port 443
    User git

此时 SSH 就可以通过 443 端口访问了,而不是原来的 22 端口。

参考链接: