突然 ssh 连不上 github,无法拉取仓库代码,配置 https.proxy http.proxy 代理无效(可能我用的是 ssh 的原因)。然后看到 git 设置和取消代理 可以尝试将 ssh 端口修改为 443,真救了老命了。

1
2
3
4
5
6
# 创建 ~/.ssh/config 配置文件和写入如下配置
# 将 ssh 端口修改为 443
Host github.com
    Hostname ssh.github.com
    Port 443
    User git