mac如何解决下载不了github的文档

430 阅读1分钟

现在有很多支持 GitHub 加速下载的网站,比如 GitClone,输入项目名即可高速下载!

image.png

方法一(替换URL)

git clone https://gitclone.com/github.com/tendermint/tendermint.git

方法二(设置git参数)

git config --global url."https://gitclone.com/".insteadOf https://

git clone https://github.com/tendermint/tendermint.git

方法三(使用cgit客户端)

cgit clone https://github.com/tendermint/tendermint.git

但是这种方法仅适用于下载项目使用或学习,你仍然无法向 GitHub 提交代码。