Failed to connect to github.com port 443

找到网络设置

然后查看代理

找到对应的端口号

如果没有就执行以下命令

1
2
3
git config --global --unset http.proxy
git config --global --unset https.proxy

如果有端口号就执行

1
2
3
4
5
6
7
# 使用http代理
git config --global http.proxy http://127.0.0.1:端口号
git config --global https.proxy https://127.0.0.1:端口号
# 使用socks5代理
git config --global http.proxy socks5://127.0.0.1:端口号
git config --global https.proxy socks5://127.0.0.1:端口号