github clone 報錯443 錯誤代碼 Failed to connect to github.com port 443 : Timed out
查看當(dāng)前系統(tǒng)代理的 IP 地址和端口號
地址與端口號為:127.0.0.1:7890
*修改 Git 的網(wǎng)絡(luò)設(shè)置*
# 注意修改成自己的IP和端口號
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
# 查看代理
git config --global --get http.proxy
git config --global --get https.proxy