Git 错误 fatal: unable to access 'https://github.com/****.git/': Couldn't resolve host 'github.com'

发布于 2024-12-09 12:41:50 字数 535 浏览 4 评论 0

解决办法重新设置和取消代理,前提是你得有代理地址:

# 设置 http 代理
git config --global http.proxy http://127.0.0.1:1080 
# 设置 https 代理
git config --global https.proxy https://127.0.0.1:1080 
# 取消 http 代理
git config --global --unset http.proxy
# 取消 https 代理
git config --global --unset https.proxy

npm config delete proxy

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

开始看清了

暂无简介

0 文章
0 评论
24 人气
更多

推荐作者

马化腾

文章 0 评论 0

thousandcents

文章 0 评论 0

辰『辰』

文章 0 评论 0

ailin001

文章 0 评论 0

冷情妓

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文