查看git设置
git config --global --list
设置全局代理,使用 http 代理
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
设置全局代理,使用socks5代理
git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080
取消全局代理
git config --global --unset http.proxy
git config --global --unset https.proxy
只对 github.com 使用代理
git config --global http.https://github.com.proxy http://127.0.0.1:20081
git config --global https.https://github.com.proxy http://127.0.0.1:20081
取消 github.com 代理
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy
版权属于:大卫科技Blog
本文链接:https://www.iyuu.cn/archives/503/
转载时须注明出处