解决 fatal: unable to access ‘https://github.com/.../.git‘: Could not resolve host: github.com
·
1.没用代理的话用这个:
git config --global --unset http.proxy
git config --global --unset https.proxy
2.用了代理的话,用这个,代理端口自己找一下
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
更多推荐
所有评论(0)