git clone失败解决方法

只需在 git clone 命令中将 gitclone.com 嵌入到克隆地址中即可

方法一(替换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

你可能感兴趣的:(git)