Failed to connect to github.com port 443 发表于 2024-11-22 | 分类于 macOS 找到网络设置 然后查看代理 找到对应的端口号 如果没有就执行以下命令 123git config --global --unset http.proxygit config --global --unset https.proxy 如果有端口号就执行 1234567# 使用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:端口号