为git设置网络代理

GIT设置http、https代理

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

查看http、https代理配置情况

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

取消http、https代理配置

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


» 本文链接:https://blog.apires.cn/archives/644.html
» 转载请注明来源:Java地带  » 《为git设置网络代理》

» 本文章为Java地带整理创作,欢迎转载!转载请注明本文地址,谢谢!
» 部分内容收集整理自网络,如有侵权请联系我删除!

» 订阅本站:https://blog.apires.cn/feed/

标签: GIT

添加新评论