欢迎您的访问
专注于分享最有价值的互联网技术干货

Git设置代理

几个T的资料等你来白嫖
双倍快乐
一定要收藏这个宝藏网站防止丢失,求助资源~!!!

查看代理设置

git config --global http.proxy
git config --global https.proxy

设置全局代理

git config --global http.proxy '{scheme}://{host}:{port}'
git config --global https.proxy '{scheme}://{host}:{port}'

scheme:代理协议,可选http,https,socks5等
host:代理地址
port:代理端口号
exp:

git config --global http.proxy 'http://127.0.0.1:10819'
git config --global https.proxy 'http://127.0.0.1:10819'

取消代理

git config --global --unset http.proxy
git config --global --unset https.proxy

只对github.com

#设置代理
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080

#取消代理
git config --global --unset http.https://github.com.proxy

修改配置文件办法

找到git的配置文件.gitconfig。这个文件一般在用户目录下

# 为github.com配置socks5代理
[http "https://github.com"]
  proxy = socks5://127.0.0.1:1080

# 为所有的配置socks5代理
[http]
  proxy = socks5://127.0.0.1:1080
赞(1) 打赏
版权归原创作者所有,任何形式转载请联系我们:大白菜博客 » Git设置代理

评论 抢沙发

4 + 9 =
  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏