fatal: unable to access 'https: Could not resolve proxy: proxy.example.com

在git push origin 时一直无法成功,请问应该如何修正代理器的问题并处理这种情况?

img

img

https://codeleading.com/article/56024851652/

【相关推荐】



  • 这篇博客: 解决虚拟机下git出现Could not resolve proxy: https的错误中的 方法1 部分也许能够解决你的问题, 你可以仔细阅读以下内容或跳转源博客中阅读:

    查看是否使用git代理

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

    若有,则unset

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

如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 写成博客, 将相关链接放在评论区, 以帮助更多的人 ^-^