国内访问 git 慢的方法

在国内访问 git 的时候,总会存在访问慢或者git clone 的时候报下面的错误

这个时候,我们可以使用代理的方式去进行访问

需要注意的是:你必须存在一个国外的🪜,能够让你快速访问到 GitHub

当有了上面的🪜后,本机也正确配置的 socket 的服务端口和 http 服务端口

下面就可以配置github 的代理了

# 设置 git 的 proxy (sockets)代理地址
git config --global http.proxy socks5://127.0.0.1:10800

# 设置 git 的 proxy(http/https)代理
git config --global http.proxy http://127.0.0.1:10801
git config --global https.proxy https://127.0.0.1:10801

# 设置需要通过代理地址访问的域名(github.com)
git config --global http.https://github.com.proxy socks5://127.0.0.1:10801

# 设置 HTTP 的 version
git config --global http.version HTTP/1.1

# 设置 HTTP 的 postBuffer
git config --global http.postBuffer 524288000


# 设置后面两个是防止在 git clone下载出现问题

查看配置是否成功

git config --global --list
# 或者查看.gitconfig 文件
cat ~/.gitconfig

删除代理

git config --global --unset http.proxy
git config --global --unset http.https://github.com.proxy
posted @ 2022-05-18 23:46  Lin-Grocery  阅读(1189)  评论(0编辑  收藏  举报