码迷,mamicode.com
首页 > 其他好文 > 详细

Git下载加速教程

时间:2019-07-28 21:36:11      阅读:585      评论:0      收藏:0      [点我收藏+]

标签:修改   Edito   red   set   链接   ping   require   pad   通过   

方法一

大家普遍采取的是更改本地的host文件,然后cmd命令刷新

1.访问这里,依次获取下面三个url的ping的ip

github.com
github.global.ssl.fastly.net
codeload.github.com

2.需要C:\Windows\System32\drivers\etc然后修改github相关的属性为

192.30.253.113  github.com
151.101.25.194  github.global.ssl.fastly.net
192.30.253.121  codeload.github.com

3.执行ipconfig /flushdns命令,刷新 DNS 缓存。

方法二(推荐)

前期的准备:首先自己将代理开启,系统代理模式改为全局模式

1.设置Git的代理方式

git config --global https.proxy http://127.0.0.1:1080

git config --global https.proxy https://127.0.0.1:1080

git config --global http.proxy 'socks5://127.0.0.1:1080' 

git config --global https.proxy 'socks5://127.0.0.1:1080'

2.取消(不建议)

git config --global --unset http.proxy

git config --global --unset https.proxy

3.通过Git命令来确认

git config --global --list

结果显示

$ git config --global --list
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
user.name=**********             #用户名
user.email=*********@gmail.com   #注册邮箱
core.editor="D:\WDGJ\Sublime Text 3\sublime_text.exe" -w
http.http://github.com.proxy=http://127.0.0.1:1080
https.https://github.com.proxy=https://127.0.0.1:1080
http.proxy=http://127.0.0.1:1080

socks5的代理可以获取这里

方法三

利用gitee来进行转接下载,要求:一个github账户,一个码云gitee账户

  1. 将github上面你想要搞下来的项目首先 frok 到你自己的github的账户中去。耗时:一瞬间
  2. 登录gitee,没有的自行注册。网页中有添加项目的按钮,一个加号。点击加号,下拉列表里面有 迁移github项目 的选项,点开后按照提示关联自己的github账号,之后选择你要迁移的项目,按提示操作。耗时:不到三分钟。
  3. 按照 clone github项目方法, clone 迁移到gitee账户中的项目。区别是 clone 链接换成了目标项目在gitee中的链接。通常下载速度是以MB/s为单位的。

可以参考这位大佬的文章

Git下载加速教程

标签:修改   Edito   red   set   链接   ping   require   pad   通过   

原文地址:https://www.cnblogs.com/J-Nemo/p/11260933.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!