github克隆 报错443 错误代码 Failed to connect to github.com port 443 : Timed out

 

查看当前系统代理的 IP 地址和端口号

地址与端口号为:127.0.0.1:7890

*修改 Git 的网络设置*

# 注意修改成自己的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

 

 posted on 2023-11-23 18:13  fakkk996  阅读(76)  评论(0编辑  收藏  举报