美文网首页码农的世界开源工具技巧
git clone加速方法(适用于Linux和Mac)

git clone加速方法(适用于Linux和Mac)

作者: 霜天渔火 | 来源:发表于2019-06-22 17:19 被阅读3次

1. 查找域名对应的IP地址

nslookup github.com
nslookup github.global.ssl.fastly.Net
将IP地址记录下来

2. 修改hosts文件

/etc/hosts中添加下列语句(IP地址根据上一步的记录):

13.229.188.59  github.com
151.101.77.194  github.global.ssl.fastly.Net

3. 刷新DNS缓存

Linux下使用命令:

sudo /etc/init.d/networking restart

Mac下使用命令:

sudo killall -HUP mDNSResponder

相关文章

网友评论

    本文标题:git clone加速方法(适用于Linux和Mac)

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