Save Load
GitHub 切换暗/亮/自动模式 切换暗/亮/自动模式 切换暗/亮/自动模式 返回首页

ID Ea Git 配置代理

IDEA Git 配置代理

idea需要git操作的这样配置代理,在当前项目目录进入命令行:

配置全局参数:–global

全局代理命令 :git config –global http.proxy http://127.0.0.1:7890 代理命令 :git config http.proxy http://127.0.0.1:7890 全局取消代理: git config –global –unset http.proxy 取消代理: git config –unset http.proxy 全局查询是否使用:git config –global http.proxy 查询是否使用:git config http.proxy