Git设置HTTP/HTTPS代理服务器
2021-02-13 23:16
标签:oca www tran lan div href 本地 top tar Git设置HTTP/HTTPS代理服务器 标签:oca www tran lan div href 本地 top tar 原文地址:https://www.cnblogs.com/2018shawn/p/12996855.htmlGit设置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
上一篇:html新标签
下一篇:css grid布局入门
文章标题:Git设置HTTP/HTTPS代理服务器
文章链接:http://soscw.com/index.php/essay/55005.html