git仓库的代理

git仓库的代理

因为种种原因,github访问很困难,仓库代码的提交比较受限,因此想到通过挂代理的方式让代码可以正常提交。

首先第一步,肯定需要shdowsocks代理工具。

其次

全局设定:

http
1
$ git config --global http.proxy http://127.0.0.1:1087
https
1
$ $ git config --global https.proxy https://127.0.0.1:1087

or

只针对特定仓库设定:

http
1
$ git config http.proxy http://127.0.0.1:1087
https
1
$ git config https.proxy https://127.0.0.1:1087

注:127.0.0.1:1087是因为image-20210402221751889

作者

Sea

发布于

2021-04-02

更新于

2023-01-10

许可协议

评论