GitHub加速拉取支持终端命令行 git clone , wget , curl 等工具下载。
支持 raw.githubusercontent.com , gist.github.com , gist.githubusercontent.com 文件下载。
使用加速拉取方法:
#比如拉取 https://github.com/NVIDIA/apex.git 项目
git clone https://mirror.ghproxy.com/https://github.com/NVIDIA/apex.git
#拉取私有仓库
#Clone 私有仓库需要用户在 Personal access tokens 申请 Token 配合使用
git clone https://user:your_token@mirror.ghproxy.com/https://github.com/your_name/your_private_repo
#wget 和 curl 加速
wget https://mirror.ghproxy.com/https://github.com/stilleshan/ServerStatus/archive/master.zip
wget https://mirror.ghproxy.com/https://raw.githubusercontent.com/stilleshan/ServerStatus/master/Dockerfile
curl -O https://mirror.ghproxy.com/https://github.com/stilleshan/ServerStatus/archive/master.zip
curl -O https://mirror.ghproxy.com/https://raw.githubusercontent.com/stilleshan/ServerStatus/master/Dock