unable to connect to github.com: github.com[0: 20.205.243.166]: errno=Unknown error
时间: 2024-01-20 22:16:51 浏览: 1433
hacerespacio.github.io:Sitio网站
根据提供的引用内容,出现"unable to connect to github.com: github.com[0: 20.205.243.166]: errno=Unknown error"错误通常是由于使用git://方式下载时出现的。解决这个问题的方法是改用https://方式访问。你可以通过以下两种方法解决这个问题:
方法一:使用git config命令
```shell
git config --global url.https://github.com/.insteadOf git://github.com/
git config --global url."https://".insteadOf git://
```
方法二:手动修改.git/config文件
1. 使用vim或其他编辑器打开.git/config文件。
2. 在文件末尾添加以下内容:
```shell
[url "git@github.com:"]
pushInsteadOf = git://github.com/
pushInsteadOf = https://github.com/
```
通过以上两种方法的任意一种,你就可以解决"unable to connect to github.com: github.com[0: 20.205.243.166]: errno=Unknown error"错误了。
阅读全文