Git设置代理

由于众所周知的原因github的项目拉取和推送非常的痛苦,此篇以记录相关方法以拯救青年失智的我

使用方法

确保已有httpsocks代理,此处以http://127.0.0.1:1080socks5://127.0.0.1:1081为例

全局配置

使用以下命令配置HTTP代理:

git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080

使用以下命令配置SOCKS代理:

git config --global http.proxy socks5://127.0.0.1:1081
git config --global https.proxy socks5://127.0.0.1:1081

为特定目标进行设置

以为github设置为例

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

Git设置代理
https://blog.xianyu.one/2023/11/30/git-proxy/
作者
咸鱼
发布于
2023年11月30日
许可协议