解决在GitHub上克隆项目慢的问题

解决在GitHub上克隆项目慢的问题

使用 GitHub 学习、管理代码十分方便,但是有时候 git clone 速度非常慢,只有几 Kb 的速度。

获取网站IP

浏览器访问 https://www.ipaddress.com/ ,获取 github.global.ssl.fastly.net、global-ssl.fastly.net、assets-cdn.github.com 和 github.com 的 ip。
或者直接ping。

修改文件

修改 hosts,增加 host 映射。

sudo vim /etc/hosts
xxx.xxx.xxx.xxx github.global.ssl.fastly.net
xxx.xxx.xxx.xxx global-ssl.fastly.net
xxx.xxx.xxx.xxx assets-cdn.github.com
xxx.xxx.xxx.xxx github.com

以这个格式追加到文件末尾。

更新DNS缓存

# macOS
dscacheutil -flushcache
# Windows
ipconfig /flushdns
# Linux
service nscd restart
# Ubuntu
sudo /etc/init.d/dns-clean start

你可能感兴趣的:(解决在GitHub上克隆项目慢的问题)