$ git clone https://xxxx
克隆速度慢的解决方法:
方法1:
查询IP地址
进入域名IP地址查看工具: https://www.ipaddress.com 分别输入如下网址查看对应的IP地址
github.global.ssl.fastly.net
github.com
或者分别通过命令$ nslookup github.global.ssl.fastly.Net
和$ nslookup github.com
也可获得对应的IP地址
修改hosts文件
得到对应的IP后,在hosts文件后追加如下两行
Windows用户hosts文件所在路径为:C:\Windows\System32\drivers\etc\hosts
Linux用户:sudo gedit /etc/hosts
(xxx替换为你得到的对应的IP地址)
xxx.xxx.xxx.xxx github.global-ssl.fastly.net
xxx.xxx.xxx.xxx github.com
刷新DNS
Windows用户:ipconfig /flushdns
Linux用户:sudo /etc/init.d/networking restart
方法2:
如果你使用了代理,可直接在克隆前使用如下命令
git config --global http.proxy 'sock5://127.0.0.1:1080'
git config --global https.proxy 'sock5://127.0.0.1:1080'
如有任何疑问或建议欢迎下方留言 :-)