排查
- 查看 git 配置
shell
git config --global -l
- 查看 windows 代理
设置 搜索 代理 查看 端口 如 6789 - 设置 git 代理端口为系统代理端口
shell
git config --global http.proxy 127.0.0.1:6789
git config --global https.proxy 127.0.0.1:6789
- 若系统无代理, 则移除 git 代理
shell
# 移除代理
git config --global --unset http.proxy
git config --global --unset https.proxy