git代理设置 加速git clone

2019-03-08

给git 加代理

bash

git config --global http.proxy http://127.0.0.1:8787
git config --global https.proxy http://127.0.0.1:8787
git config --global http.sslverify false
http://127.0.0.1:8787		这里 我使用的是 lantern 的代理

编辑 git配置文件 ~/.gitconfig

添加

[http]
	sslverify = false
	proxy = http://127.0.0.1:8787
[https]
	proxy = http://127.0.0.1:8787