美文网首页
Go Git brew 通过代理使用

Go Git brew 通过代理使用

作者: verge_l | 来源:发表于2018-08-10 10:25 被阅读0次

1.git通过代理使用

~/.gitconfig
[http]
    proxy = socks5://127.0.0.1:8001
[https]
    proxy = socks5://127.0.0.1:8001

2.Golang通过代理使用

http_proxy=socks5://127.0.0.1:1086 go get -u -v  github.com/astaxie/beego

3.brew通过代理使用

ALL_PROXY=socks5://localhost:1086 brew install golang

相关文章

网友评论

      本文标题:Go Git brew 通过代理使用

      本文链接:https://www.haomeiwen.com/subject/fzckbftx.html