Bootstrap

Git配置代理

今天要用git clone一下东西,但是太慢了,然后去网上找了一波资料,结果不是很好,都是假数据。妈的
然后我自己测试了一下,可以这样来

在这里插入图片描述
首先我是使用ssr的 所以代理的端口就是1080,
也就是 127.0.0.1:1080

然后网络协议有http和https 不过一般是只要https就可以了

https的配置

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

http的配置

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

查看配置 如图

git config -l

在这里插入图片描述
可以看到这里是已经配置好了的。

如果你想取消配置的话

git config --global --unset http.proxy
git config --global --unset https.proxy
;