前言
服务器上,在获取 github 或者golang.org上面的代码的时候,发现有时候很慢,这时候就需要使用代理。go get实际也是使用 git 去获取的。因此只要设置git代理即可。
设置
可以是直接使用命令进行设置,也可以编辑~/.gitconfig文件
1、使用命令
http代理:
git config –global https.proxy
git config –global https.proxy
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命令重新下载了。