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

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

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

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


当前回答

我以前用过

service apache2 stop

其他回答

当你尝试上述解决方案,没有帮助,你可能需要检查你的本地网络设置,并尝试添加8.8.8.8和你的本地路由器ip到DNS字段。

对于Ubuntu服务器,你可以在/etc/network/interfaces文件中写下路由器的essid和密码:

iface [en0 || your wireless driver no necessarily en0] inet static
    address 192.168.1.100 / (something for your static ip between 1-255)
    netmask 255.255.255.0
    gateway 192.168.1.1 / (this is the ip of your router)
    dns-nameservers 8.8.8.8 / (you can use whatever you want)
    wpa-ssid qwertyuio / (this is router id)
    wpa-psk qwertyuio / (this is router password for wireless connection)

当我在将存储库拉到服务器时遇到这个错误时,我编写了wpa-ssid和wpa-psk并重新启动。然后就成功了。

编辑:我又遇到了同样的问题,这一次是因为路由器信号电平不一致。我的联系不牢固,这就是问题所在。然而,上面的解决方案是静态ip的真正解决方案

以防后代也陷入困境: 对我来说,什么工作(在mac OSX)是设置我的DNS与opendns 208.67.222.222, 208.67.220.220。我在这里得到这个数字:https://www.opendns.com。出于某种原因,我的dns配置重置为默认数字(我猜是我的本地ip),我无法连接到github, brew或rubygems。很抱歉拼写错误。

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

是的,您可以通过设置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

在我的具体案例中,有一个叫做ZScaler的软件阻止了互联网的访问。重新启动就解决了这个问题。我想你需要在设置代理和所有其他东西之前重新启动你的电脑,因为问题的本质可能比你想象的要简单。有时只是不能上网。