git设置代理加速

@adens 6/28/2018 8:07:19 AM

设置全局走代理加速

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 --unset http.proxy

git config --global --unset https.proxy

只设置Github地址的代理加速,对于其他的不进行加速(推荐)

git config --global http.https://github.com.proxy localhost:1080

git config --global https.https://github.com.proxy localhost:1080

注意:走localhost还是127.0.0.1看internet选项中 连接的PAC地址.如果在hosts文件添加了以下映射请随意

	127.0.0.1       localhost

取消Github地址的代理加速

git config --global --unset http.https://github.com.proxy

git config --global --unset https.https://github.com.proxy

Last Modification : 6/28/2018 8:07:19 AM


In This Document