设置全局Config代理。
走 HTTP
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
走 socks5
git config --global http.proxy "socks5://127.0.0.1:1080"
git config --global https.proxy "socks5://127.0.0.1:1080"
去除代理设置
git config --global --unset http.proxy
git config --global --unset https.proxy
或者在clone的时候直接设置代理克隆,这样快的时候能达到3M/S,简直爽歪歪!
git clone -c http.proxy="127.0.0.1:1080" https://github.com/jonny-xhl/FastReport.git
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《git走代理》
文章链接:
https://blog.78cat.cn/4874.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。