查看代理设置

git config --global http.proxy
git config --global https.proxy

设置 HTTP / HTTPS 代理

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:端口号

取消代理

git config --global --unset http.proxy
git config --global --unset https.proxy

刷新 DNS 缓存(网络代理常配合)

# Windows
ipconfig /flushdns
# MacOS
dscacheutil -flushcache
# Linux
sudo systemd-resolve --flush-caches
作者:freed  创建时间:2025-03-28 10:30
最后编辑:freed  更新时间:2025-03-28 10:33