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