当需要从Github下载文件时,国内的下载速度实在太慢了,经常会报超时错误。
为了加快下载速度,可以通过下面的方式,使用镜像网站代替直接访问GitHub:
1 | git config --global url."https://hub.fastgit.org".insteadOf https://github.com |
其中,https://hub.fastgit.org
是镜像网站的地址。
如果镜像网站无法访问了,只需要执行下面的命令,就可以退回到直接访问GitHub的状态:
1 | git config --global --unset url."https://hub.fastgit.org".insteadOf |