因为防止恶意用户使用代理扫爆SSH服务端封禁了 **22** 端口的出站连接,您可以使用 **443 **端口来Push代码。 在 SSH 配置文件中设置此项,请编辑文件 **/.ssh/config**,并添加此部分:
```
Host github.com
Hostname ssh.github.com
Port 443
User git
```
具体可以参考 [Github官方文档](https://docs.github.com/en/authentication/troubleshooting-ssh/using-ssh-over-the-https-port)