美文网首页
Git Clone 东西很慢怎么办

Git Clone 东西很慢怎么办

作者: QuincySx | 来源:发表于2017-12-06 17:53 被阅读258次

在天朝 Github Clone 库真的是比较烦恼,特别的慢怎么办

今天介绍 S(酸)S(酸)R(乳) 来提速,
如何配置不讲,
首先搞清自己的酸酸乳 socks5 端口 我的是 1086 windows 默认是 1080

设置代理配置
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

这是四条命令,需要改的只有端口 用前两条不用后两条,我推荐使用 socks

取消代理配置(如果酸酸乳关了,git 就会连接失败,用完记得关闭)
git config --global --unset http.proxy
git config --global --unset https.proxy

相关文章

网友评论

      本文标题:Git Clone 东西很慢怎么办

      本文链接:https://www.haomeiwen.com/subject/mtylixtx.html