git设置代理,提高下载速度

0分享至

用扫码二维码

分享至好友和朋友圈

前言

在获取github或者golang.org上面的代码的时候,发现有时候很慢,这时候就需要使用代理。go get实际也是使用git去获取的。因此只要设置git代理即可。

设置

可以是直接使用命令进行设置,也可以编辑~/.gitconfig文件

1、使用命令

http代理:

gitconfig--globalhttps.proxy:10800

gitconfig--globalhttps.proxy:10800

socks5代理:

gitconfig--globalhttp.proxysocks5://127.0.0.1:10800

gitconfig--globalhttps.proxysocks5://127.0.0.1:10800

2、编辑文件~/.gitconfig

在文件添加:

[http]

proxy = socks5://127.0.0.1:10800

[https]

proxy = socks5://127.0.0.1:10800

然后就可以直接使用git命令重新下载了。

取消代理

gitconfig--global--unsethttp.proxy

gitconfig--global--unsethttps.proxy

特别声明:以上内容(如有图片或视频亦包括在内)为自媒体平台“网易号”用户上传并发布,本平台仅提供信息存储服务。

Notice: The content above (including the pictures and videos if any) is uploaded and posted by a user of NetEase Hao, which is a social media platform and only provides information storage services.

/阅读下一篇/

返回网易首页 下载网易新闻客户端