git 设置 github.com 代理

2021-10-12  本文已影响0人  xczq

使用 github 的 git 服务时,有时会无法连接服务器。

方式一:修改 ~用户根目录/.gitconfig 文件

添加以下内容:

[http "https://github.com"]
    proxy = http://127.0.0.1:54644
[https "https://github.com"]
    proxy = http://127.0.0.1:54644

还原:直接删除上面内容

方式二:使用命令行

通过命令修改全局.gitconfig文件

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

还原:

git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy

另外

如果要代理所有远程git服务器,可配置系统环境变量

参考

上一篇下一篇

猜你喜欢

热点阅读