解决git速度慢的方法

1. 浏览器访问 https://www.ipaddress.com/ 

获取 github.global.ssl.fastly.net、global-ssl.fastly.net、assets-cdn.github.com 和 github.com 的 IP

解决git速度慢的方法_第1张图片

解决git速度慢的方法_第2张图片

2.

Windows上的hosts文件路径在 C:\Windows\System32\drivers\etc\hosts

  linux:将其ip内容加入 /etc/hosts文件中

解决git速度慢的方法_第3张图片

解决git速度慢的方法_第4张图片

3.刷新DNS缓存
linux:

sudo /etc/init.d/networking restart

windows:

ipconfig /flushdns

4. 只获取代码的最新版,再获取完整历史信息

 git clone --depth=1 https://github.com/xxx/xxx.git
 cd xxx
 git fetch --unshallow

 

你可能感兴趣的:(ubuntu)