无法克隆Github或Bitbucket存储库

时间:2014-06-08 18:57:44

标签: git github bitbucket

当我尝试从GitHub或Bitbucket克隆存储库时,我收到一条错误说"无法解析主机:github.com" (或bitbucket.com)。

我检查了全局.gitconfig文件,但它没有http.proxy的条目。它是否因为DNS问题而发生?如果是,那么如何解决呢?

1 个答案:

答案 0 :(得分:1)

  

是否因DNS问题而发生?

如果您可以浏览github.com并通过网络界面查看回购内容,那么您的DNS就可以了。

尝试使用https网址克隆存储库,而不是ssh网站(因为ssh可以根据您的环境被屏蔽,这意味着git@github.com:username/arepo无法工作)

git clone https://github.com/username/arepo

但如果您使用https,请尝试相反的操作,并使用ssh查看问题是否仍然存在:

git clone git@github.com:username/arepo

generate an ssh keypair first