一、使用码云
选择 从GitHub/GitLab
中导入仓库。
导入Github
仓库地址。
使用新的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
测试效果。
三、使用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