Git设置代理服务器

方式一

  • 如果说使用的是项目http或者https地址,就配置http与https代理即可,输入以下命令:
shell 复制代码
git config --global http.proxy "socks5://127.0.0.1:1080"
git config --global https.proxy "socks5://127.0.0.1:1080"

这样使用git clone/push/pull所有http或者https地址项目都会走代理。

  • 还可以使用下面命令取消代理设置:
shell 复制代码
git config --global --unset http.proxy
git config --global --unset https.proxy

方式二

  • 在.git中的config文件中增加
shell 复制代码
[http]
    proxy = http://127.0.0.1:1080
[https]
    proxy = http://127.0.0.1:1080
相关推荐
Domain-zhuo1 小时前
Git和SVN有什么区别?
前端·javascript·vue.js·git·svn·webpack·node.js
沛沛老爹2 小时前
CI/CD是什么?
运维·git·ci/cd
向阳花花花花3 小时前
git clone 和 conda 换源
git·conda
sin220112 小时前
idea集合git使用
git
木心14 小时前
Git基本操作快速入门(30min)
git·github
LXL_2414 小时前
Git_撤销本地commit_查找仓库中大文件
git
yg_小小程序员16 小时前
鸿蒙开发(16)使用DevEco Studio上的Git工具进行多远程仓管理
git·华为·harmonyos
每天八杯水D20 小时前
Git完整使用经历
git
xianwu5431 天前
反向代理模块。开发
linux·开发语言·网络·c++·git