美文网首页
git设置http全局代理

git设置http全局代理

作者: 火星来的农民 | 来源:发表于2021-11-01 15:52 被阅读0次

git config --global 变量名称 变量内容
git config --global --unset 取消变量

例如:

git设置全局http代理和https代理
git config --global http.proxy 127.0.0.1:1080
git config --global https.proxy 127.0.0.1:1080

取消这两个全局代表
git config --global --unset http.proxy
git config --global --unset https.proxy

相关文章

网友评论

      本文标题:git设置http全局代理

      本文链接:https://www.haomeiwen.com/subject/yigzaltx.html