Git SOCKS5代理無法生效(已解決)

Noxtera發表於2024-08-16

解決方法:

git config --global http.proxy socks5h://127.0.0.1:1080
git config --global https.proxy socks5h://127.0.0.1:1080

相比原先的方法:

git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080

socks5://更改為了 socks5h://,這樣可以在代理伺服器上解析 DNS,而不是在本地解析。

取消代理:

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

檢視代理:

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

相關文章