git clone抛出错误:无法解析主机名未知的致命名称或服务:无法从远程存储库读取

时间:2016-10-26 07:04:18

标签: git

当我从一个远程存储库git clone时,g enter image description here

我在google中尝试各种方法。但它仍然有同样的错误。

1 个答案:

答案 0 :(得分:0)

确保您已设置必要的代理设置。 当您需要从雇主网络访问git时,通常需要这样做。

<。>在.gitconfig文件中(对于位于用户文件夹中的我),您可以添加代理设置。

[http]
proxy = http://username:password@proxyserver:port

请注意,您的用户名或密码中的特殊字符需要进行网址编码(%表示法,请参阅http://www.w3schools.com/tags/ref_urlencode.asp

您也可以使用以下命令通过命令行设置它

git config --global http.proxy http://username:password@proxyserver:port

usernamepasswordproxyserverport替换为实际值。

还要确保设置了ssh密钥。 Github很好地解释了如何做到这一点:https://help.github.com/articles/generating-an-ssh-key/