git使用代理clone

我使用的是ss代理,我在网上也看到了很多的关于设置代理的方案,但是都得不到解决。

  • 设置全局Config代理。
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
  • 去除代理设置
git config --global --unset http.proxy
git config --global --unset https.proxy

在我使用过程中一直都没得到解决。

我在clone的时候直接设置代理克隆,这样快的时候能达到3M/S,简直爽歪歪!

git clone -c https.proxy="127.0.0.1:1081" https://github.com/jonny-xhl/FastReport.git

你可能感兴趣的:(git,git,github)