git代理,windows命令行代理,linux命令行代理

来源:互联网 发布:辐射4灵光优化 编辑:程序博客网 时间:2024/06/07 00:01
下载不动设置代理:
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global http.SSLVERIFY false

删除git config项目:
git config --global http.proxy ""
git config --global https.proxy ""

=========================================

windows命令行代理:
set http_proxy=http://127.0.0.1:1080

linux命令行代理:
export http_proxy=192.168.8.25:1080
原创粉丝点击