一、使用码云

选择 从GitHub/GitLab中导入仓库。

image-20200701011826155

导入Github仓库地址。

image-20200701012046803

使用新的Gitee地址。

https://gitee.com/a875667601/xxl-job.git

二、使用cnpmjs镜像

github.com修改为github.com.cnpmjs.org

# 原仓库地址
https://github.com/QForever/xxl-job.git
# 使用cnpmjs镜像加速
git clone https://github.com.cnpmjs.org/QForever/xxl-job.git
# 把远程地址改回来,方便提交代码到原仓库地址
cd xxl-job
git remote set-url origin https://github.com/QForever/xxl-job.git

测试效果。
image-20200701012723658

三、使用jsdelivr加速

jsdelivr可免费提供CDN加速,我们一般用来给自己的博客加速,或者制作一个免费的图床同样的它也可以加速我们的GitHub,当我们要快速获取项目中的某个文件的时候就可以使用这个方式它的使用也非常简单,我们将github.com修改为cdn.jsdelivr.net/gh同时将/blob/修改为@

# 原仓库地址
https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
# 使用jsdelivr加速
https://cdn.jsdelivr.net/gh/kubernetes/kubernetes@master/logo/logo.png