git 开启代理和取消代理
同时使用 GitHub 和 Gitee,要设置 git 代理配置,在使用 GitHub 时开启代理,使用 Gitee 时取消代理,才能正常进行 git 操作文章来源地址https://www.toymoban.com/news/detail-516805.html
1. git 开启代理
git config --global http.proxy http://127.0.0.1:41091
git config --global https.proxy http://127.0.0.1:41091
2. git 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
文章来源:https://www.toymoban.com/news/detail-516805.html
到了这里,关于git 开启代理和取消代理的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!