GitHub 加速代理 使用方法: === Git 命令行使用 === git clone https://git.miduo.org/https://github.com/user/repo.git git remote add origin https://git.miduo.org/https://github.com/user/repo.git === 浏览器/API 使用 === 1. HTTPS 格式:https://git.miduo.org/https://github.com/user/repo 2. SSH 格式:https://git.miduo.org/git@github.com:user/repo.git 示例: git clone https://git.miduo.org/https://github.com/noroenrn/group.git curl https://git.miduo.org/https://raw.githubusercontent.com/user/repo/main/file.txt === 私有仓库 === 使用 Git 凭据助手或在 URL 中包含 token: git clone https://git.miduo.org/https://TOKEN@github.com/user/private-repo.git 或配置 Git: git config --global credential.helper store git config --global url."https://git.miduo.org/https://github.com/".insteadOf "https://github.com/"