从github克隆存储库失败

我无法从github克隆任何存储库。 我总是得到这个错误消息

fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists 

我已经注意到以下几点:

  1. 将我的pathvariables设置为;C:\Program Files (x86)\Git\cmd; and C:\Program Files (x86)\Git\bin; ;C:\Program Files (x86)\Git\cmd; and C:\Program Files (x86)\Git\bin;
  2. 我已经生成了公钥并链接id_rsa.pub与Git

我已经看到所有相关的链接,无法解决这个问题。

如果你有问题的SSH密钥,你至少可以用作一个解决方法https网址 :

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

关于ssh,请确保:

  • 环境变量HOME定义,并且你的私有/公共ssh密钥在:

     %HOME%\.ssh\id_rsa %HOME%\.ssh\id_rsa.pub 
  • 您的公共ssh密钥被添加到您的GitHub帐户 。