写点什么

Git clone 过慢问题

用户头像
JDoe
关注
发布于: 2020 年 05 月 10 日
Git clone过慢问题

git clone 经常下载几K或者不足1K问题,解决办法如下:

  1. 打开SSH代理

  2. 查看socks5端口号

  3. 设置github代理,不涉及国内仓库

git config --global http.https://github.com.proxy socks5://127.0.0.1:xxx
git config --global https.https://github.com.proxy socks5://127.0.0.1:xxx

参考链接: https://www.zhihu.com/question/27159393



发布于: 2020 年 05 月 10 日阅读数: 55
用户头像

JDoe

关注

还未添加个人签名 2017.10.26 加入

还未添加个人简介

评论

发布
暂无评论
Git clone过慢问题