GitHub加速
文章目录
- GitHub加速
- 一、前言
- 二、具体方法
- 1、git clone
- 2、git clone 私有仓库
- 3、wget & curl
一、前言
在使用国内的服务器使用github的时候,偶尔会出现由于网络原因导致git clone或wget失败。在这里可以使用如下方法绕过。
二、具体方法
支持终端命令行 git clone , wget , curl 等工具下载.
支持 raw.githubusercontent.com , gist.github.com , gist.githubusercontent.com 文件下载.
注意:不支持 SSH Key 方式 git clone 下载.
1、git clone
git clone https://ghp.ci/目标仓库地址
示例如下:
git clone https://ghp.ci/https://github.com/stilleshan/dockerfiles
2、git clone 私有仓库
Clone 私有仓库需要用户在 Personal access tokens 申请 Token 配合使用.
git clone https://user:your_token@ghp.ci/https://github.com/your_name/your_private_repo
3、wget & curl
wget https://ghp.ci/目标仓库地址
curl -O https://ghp.ci/目标仓库地址
wget https://ghp.ci/https://github.com/stilleshan/dockerfiles/archive/master.zip
wget https://ghp.ci/https://raw.githubusercontent.com/stilleshan/dockerfiles/main/README.md
curl -O https://ghp.ci/https://github.com/stilleshan/dockerfiles/archive/master.zip
curl -O https://ghp.ci/https://raw.githubusercontent.com/stilleshan/dockerfiles/main/README.md