我所做的:我在Github上创建了一个远程存储库,我试图在我的本地机器上克隆远程存储库。克隆时,我提供克隆URL和目标文件夹。

但每次我尝试克隆,我得到这个错误:

错误:“致命:无法访问https://github.com/hyperion057/spring-repo.git/':无法解决主机:github.com”

我需要做什么才能连接到GitHub ?


当前回答

我也犯过类似的错误。

C:\wamp\www\myrepository [master]> git push
fatal: unable to access 'https://github.com/myaccount/myrepository.git/': Couldn't resolve host 'github.com'

实际上,提示信息已经告诉我们哪里出错了。

https://github.com/myaccount/myrepository.git/

当我检查我的github,我发现我的github仓库的HTTPS url是

https://github.com/myaccount/myrepository.git

我不知道这是怎么回事。安装的Git Shell自动设置了错误的url。

一旦我删除了末尾的“/”,我就可以成功地推了。

其他回答

这里的边缘情况,但我尝试了(几乎)以上所有的答案在VirtualBox和什么都没有做,但然后关闭不仅VirtualBoxVM,但好ole VirtualBox本身和重新启动程序本身的技巧没有0抱怨。

希望可以帮助~0.1%的查询者:)

在克隆存储库之前,只需在kali linux终端中输入以下命令:-

service NetworkManager start

我需要配置代理设置吗?因为我办公室有代理服务器。

是的,您可以通过设置HTTP_PROXY和HTTPS_PROXY环境变量来做到这一点。

参见“同步与github”:

set HTTPS_PROXY=http://<login_internet>:<password_internet>@aproxy:aport
set HTTP_PROXY=http://<login_internet>:<password_internet>@aproxy:aport
set NO_PROXY=localhost,my.company

(为了避免在代理URL中明确放置您的凭据—用户名/密码,请参见下文)

注意NO_PROXY,允许访问您公司的内部站点

你也可以在你的git配置中注册:

git config --global http.proxy http://<login_internet>:<password_internet>@aproxy:aport

但是如果你有不正确的代理Git设置,请删除它们:

cd /path/to/repo
git config --unset http.proxy
git config --global --unset http.proxy
git config --system --unset http.proxy

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

# double-check with:
git config -l --show-origin | grep -i proxy

不需要凭证:使用genotrance/px。 如果你像我一样,在一个NTLM代理背后的公司,你所需要做的就是:

解压缩px-v0.4.0.zip到任何你想要的地方 更改px.ini配置文件(把它放在%USERPROFILE%),更改服务器行: (代理) Server = proxy.my.company:8080 <=使用您公司的proxy:port Listen = 127.0.0.1 端口= 3128 使用HTTP(S)代理变量没有您的凭据!(px代理将通过Microsoft SSPI或Microsoft Kerberos重用当前寡妇会话中的文件)

这将给你:

set HTTPS_PROXY=http://127.0.0.1:3128
set HTTP_PROXY=http://127.0.0.1:3128
set NO_PROXY=localhost,my.company

我可以通过拔掉我的以太网电缆并重新插入来解决这个问题。重启可能也可以,但这是我解决问题的唯一方法。接下来我要尝试的是重启。

从这里的答案->我的解决方案是特定于Windows子系统Linux (WSL)用户。与代理相关的答案都与我的解决方案无关。

如果你不能运行ping命令。

# WSL
ping google.com

那么很可能您的/etc/resolve.conf文件已损坏。要修复这个问题,在一个WSL窗口中运行以下命令:

# WSL
sudo rm /etc/resolve.conf

然后以管理员模式打开Powershell终端运行

# Powershell
wsl --shutdown
Get-Service LxssManager | Restart-Service

这应该可以解决问题,可以通过再次运行ping命令来测试。