命令行配置代理方式一
git config --global http.proxy http://代理服务器地址:端口号
git config --global https.proxy https://代理服务器地址:端口号
如果有用户名密码按照下面命令配置
git config --global http.proxy http://用户名:密码@代理服务器地址:端口号
git config --global https.proxy https://用户名:密码@代理服务器地址:端口号
取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
查看配置列表
git config --list
命令行配置代理方式二
git config --global --edit
打开配置界面如下
[http]
proxy = socks5://192.168.0.20:3128
proxy = http://192.168.0.20:3128
[https]
proxy = socks5://192.168.0.20.3128
proxy = hhttps://192.168.0.20.3128
[credential "https://yd-code.srdcloud.cn"]
provider = generic
参考链接文章来源:https://www.toymoban.com/news/detail-644374.html
https://m.php.cn/faq/506377.html文章来源地址https://www.toymoban.com/news/detail-644374.html
到了这里,关于配置 Git 客户端的代理设置的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!