赞
踩
git设置代理
一般我们使用git进行上传或者下载时会很慢,连接错误,设置好代理以后就会很快,如果用如下命令需要每次都设置代理,很麻烦
git config --global https.proxy http://127.0.0.1:10808
git config --global http.proxy 'socks5://127.0.0.1:10809'
clash的默认代理端口号为7890
怎么进行一个全局设置呢?
vi ~./gitconfig
# 在文件中编辑如下内容,其中xxxx是端口号
[https]
proxy = http://127.0.0.1:xxxx
[http]
proxy = socks5://127.0.0.1:xxxx
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。