我是在Android 生成依赖库的时候遇到这个问题的
D:\MyApplication>git push -u origin main
fatal: unable to access 'https://github.com.XXX.git/': Could not resolve host: github.com.XXX
可以先在命令行下运行下面的代码:
git config --global --unset http.proxy
git config --global --unset https.proxy
如果发现还是不行的话就先删除远程,然后在重新建立(我的是一直报这个错,删除了重新连接就解决问题了fatal: unable to access ‘https://github.com.XXX.git/’: Could not resolve host: github.com.XXX
):
查看远程连接:
git remote -v
删除关联的origin的远程库
git remote rm origin
再重新建立:
git remote add origin 这里填你的git地址