码迷,mamicode.com
首页 > 其他好文 > 详细

Git 设置代理和取消设置代理

时间:2021-05-24 08:22:53      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:git   socks   ash   lan   --   查看   -bash   存在   pre   

设置 http 代理

  • socks5 协议代理
git config --global http.proxy ‘socks5://127.0.0.1:10808‘
git config --global https.proxy ‘socks5://127.0.0.1:10808‘
  • http / https 协议代理
git config --global http.proxy ‘http://127.0.0.1:10809‘
git config --global https.proxy ‘https://127.0.0.1:10809‘

取消设置 http 代理

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

查看代理设置

最终设置的结果保存在: ~/.gitconfig 文件中.

[http]
        proxy = socks5://127.0.0.1:10808
[https]
        proxy = socks5://127.0.0.1:10808

Git 设置代理和取消设置代理

标签:git   socks   ash   lan   --   查看   -bash   存在   pre   

原文地址:https://www.cnblogs.com/crayonsea/p/14766184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!