为git 命令行 设置代理环境变量
http://t.csdnimg.cn/cAxkg
国内需要修改pinoko根目录下gitconfig文件,添加
[http]proxy = http://127.0.0.1:1080
[https]proxy = https://127.0.0.1:1080
或者通过命令行配置:
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080