git设置代理和取消代理

来源:互联网 发布:2016年詹姆斯生涯数据 编辑:程序博客网 时间:2024/05/01 03:58
设置如下(可复制):git config --global https.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080git 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.proxygit config --global --unset https.proxy
0 0