这篇文章主要讲解了“Github国内访问如何加速”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Github国内访问如何加速”吧!
打开 http://tool.chinaz.com/dns,这是一个查询域名映射关系的工具。
查询 以下地址,得到其 ip:
github.global.ssl.fastly.net
assets-cdn.github.com
documentcloud.github.com
github.com
gist.github.com
help.github.com
nodeload.github.com
raw.github.com
status.github.com
training.github.com
www.github.com
avatars0.githubusercontent.com
avatars1.githubusercontent.com
codeload.github.com
多查几次,选择一个稳定,延迟较低的 ip 按如下方式添加到 host 文件
自己的一次配置如下:
复制
1 2 3 | 151.101.73.194 github.global.ssl.fastly.net 151.101.72.133 assets-cdn.github.com 13.250.177.223 github.com |
github.com 上有两种源码获取方式,一是 git clone,一是直接下载 master.zip,后者明显速度快于前者,可以考虑:
用 proxychains 这类透明代理,间接走系统中运行的代理工具中转;
用 git 内置代理,直接走系统中运行的代理工具中转,比如,你的 SS 本地端口是 1080,那么可以如下方式走代理
复制
1 2 | git config --global http.proxy socks5://127.0.0.1:1080 git config --global https.proxy socks5://127.0.0.1:1080 |
假如你使用的是 http 协议走的代理,注意 http 对应的端口,假如为 1087:
复制
1 2 | git config --global https.proxy http://127.0.0.1:1087 git config --global https.proxy http://127.0.0.1:1087 |
查看全局 config:
复制
1 | cat ~/.gitconfig |
显示如下:
复制
1 2 3 4 5 | [http] postBuffer = 524288000 proxy = socks5://127.0.0.1:1086 [https] proxy = socks5://127.0.0.1:1086 |
最后,停用代理:
复制
1 2 | git config --global --unset http.proxy git config --global --unset https.proxy |
感谢各位的阅读,以上就是“Github国内访问如何加速”的内容了,经过本文的学习后,相信大家对Github国内访问如何加速这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。