Git设置HTTP/HTTPS代理服务器
Posted 余生以学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git设置HTTP/HTTPS代理服务器相关的知识,希望对你有一定的参考价值。
Git设置HTTP/HTTPS代理服务器
git config --global http.proxy http://localhost:port git config --global https.proxy https://localhost:port
其中,localhost为服务器地址,port为服务端口
实例
这里以设置本地代理服务127.0.0.1:1080为例。
git config --global http.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080
以上是关于Git设置HTTP/HTTPS代理服务器的主要内容,如果未能解决你的问题,请参考以下文章