git设置代理
2020-11-10 本文已影响0人
苍老师的眼泪
//设置:
git config --global http.proxy socks5://127.0.0.1:10808
git config --global https.proxy socks5://127.0.0.1:10808
//取消:
git config --global --unset http.proxy
git config --global --unset https.proxy
//设置:
git config --global http.proxy socks5://127.0.0.1:10808
git config --global https.proxy socks5://127.0.0.1:10808
//取消:
git config --global --unset http.proxy
git config --global --unset https.proxy