golang-go get 设置代理,提高下载速度
前言
服务器上,在获取github或者golang.org上面的代码的时候,发现有时候很慢,这时候就需要使用代理。go get实际也是使用git去获取的。因此只要设置git代理即可。
设置
可以是直接使用命令进行设置,也可以编辑~/.gitconfig文件
1、使用命令
http代理:
git config --global https.proxy http://127.0.0.1:10800
git config --global https.proxy https://127.0.0.1:10800
socks5代理:
git config --global http.proxy 'socks5://127.0.0.1:10800'
git config --global https.proxy 'socks5://127.0.0.1:10800'
2、编辑文件~/.gitconfig
在文件添加:
[http]
proxy = socks5://127.0.0.1:10800
[https]
proxy = socks5://127.0.0.1:10800
然后就可以直接使用git命令重新下载了。
相关推荐
正走向大牛的菜鸟 2020-07-05
乾坤一碼農 2020-06-13
ameng 2020-05-16
飒水飞月 2020-05-09
zhangxing 2020-05-06
就是那个胖子 2020-04-10
LynnOhYeah 2020-02-25
hulao 2020-02-17
会哭的雨 2020-01-04
yuchuanchen 2020-01-01
Javawucao 2019-12-30
chaocc0xs 2019-12-27
ameng 2019-12-15
Balmunc 2019-11-17
lhp000 2019-11-11
heihahu 2016-03-29