修改 Git 配置加速 Clone GitHub 源码

便签格129 字

设置代理:

# socks5协议,1080端口修改成自己的本地代理端口
git config --global http.https://github.com.proxy  socks5://127.0.0.1:1080
git config --global https.https://github.com.proxy socks5://127.0.0.1:1080

# http协议,7890端口修改成自己的本地代理端口
git config --global http.https://github.com.proxy  http://127.0.0.1:7890
git config --global https.https://github.com.proxy http://127.0.0.1:7890

之后运行 git config -l 即可查看代理设置情况。

清除代理:

git config --global --unset http.proxy
git config --global --unset https.proxy
修改 Git 配置加速 Clone GitHub 源码
本文作者
发布于
版权协议
转载或引用本文时请遵守许可协议,注明出处、不得用于商业用途!
喜欢这篇文章?为什么不考虑打赏一下作者呢?
爱发电