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
相关推荐
唔知小罗7 小时前
git config是做什么的?
git
不是鱼12 小时前
新人程序猿必备的git技能(超实用基础版)
git·github
Exclusive_Cat16 小时前
Git的使用(基础语句)
git
江上清风山间明月16 小时前
git撤销、回退某个commit的修改
git·commit·版本·撤销·回退·特定
cui_win16 小时前
Redis高可用-主从复制
redis·git·github·主从复制·哨兵
Anlici19 小时前
大厂怎么用Git命令
git
谎言西西里19 小时前
Git入门指南:掌握基本概念与日常操作
git·github
程序员buddha21 小时前
git版本工具使用教程
git
tian-ming1 天前
技术栈2:Git分布式版本控制工具
git
算你狠 - ZGX1 天前
Git - 日志
git