赞
踩
git config --global -l
//设置全局代理
//http
git config --global https.proxy http://127.0.0.1:1080
//https
git config --global https.proxy https://127.0.0.1:1080
//使用socks5代理的 例如ss,ssr 1080是windows下ss的默认代理端口,mac下不同,或者有自定义的,根据自己的改
git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080
//只对github.com使用代理,其他仓库不走代理
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
git config --global https.https://github.com.proxy socks5://127.0.0.1:1080
~/.gitconfig
配置文件(永久性)[http]
proxy = socks5://127.0.0.1:1080
[https]
proxy = socks5://127.0.0.1:1080
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy
git config --global --unset http.proxy
git config --global --unset https.proxy
env|grep -I proxy
export https_proxy=socks5://127.0.0.1:1080 http_proxy=socks5://127.0.0.1:1080 all_proxy=socks5://127.0.0.1:1080
此外还有ftp_proxy
,no_proxy
等设置
$ unset http_proxy && unset ftp_proxy && unset all_proxy && unset https_proxy && unset no_proxy
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。