2021-05-12 14:32:11
git clone速度太慢的解決辦法(親測還有效)
在國內,你們肯定發現使用git clone的速度實在太慢,git clone的速度可能會讓你難以承受,現再次整理解決方法與大家分享,有圖有真相。
原因:git clone特別慢是因為github.global.ssl.fastly.net域名被限制了。只要找到這個域名對應的ip地址,然後在hosts檔案中加上ip–>域名的對映,重新整理DNS快取便可。
適用各種作業系統,本次測試系統為Ubuntu 18.04.2 LTS,下載速度從幾k提高到1M多。
沒有修改前git clone速度實在慢只有10K左右,如上圖。
修改後,git clone速度達到800多k。或者1M多。
1、查詢域名對應的ip地址,並修改hosts檔案
linuxidc@linuxidc:~/linuxidc.com$ nslookup github.global.ssl.fastly.Net
Server: 127.0.0.53
Address: 127.0.0.53#53
Non-authoritative answer:
Name: github.global.ssl.fastly.Net
Address: 151.101.229.194
linuxidc@linuxidc:~/linuxidc.com$ nslookup github.com
Server: 127.0.0.53
Address: 127.0.0.53#53
Non-authoritative answer:
Name: github.com
Address: 13.229.188.59
如下圖:
然後修改hosts檔案
Windows上的hosts檔案路徑在
C:WindowsSystem32driversetchosts
Linux的hosts檔案路徑在/etc/hosts中
sudo vim /etc/hosts
Mac的hosts檔案路徑也在/etc/hosts中
sudo vi /etc/hosts
在hosts檔案末尾新增兩行
github.com 13.229.188.59
github.global.ssl.fastly.Net 151.101.229.194
2、重新整理DNS快取
Linux:
sudo /etc/init.d/networking restart
Windows:
ipconfig /flushdns
Mac:
sudo killall -HUP mDNSResponder
以前的文章:git clone下載速度特慢的解決方案 https://www.linuxidc.com/Linux/2017-10/148116.htm
相關文章