解决git速度慢的方法

丶灬走出姿态 提交于 2020-01-10 04:50:23

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

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

2.

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

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

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

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!