GIT 出现fatal: Could not read from remote repository.解决

在git中执行完

$ git remote add origin [email protected]:账户名/learngit.git

后.shh文件夹里面会出现id_rsa、id_rsa.pub两个文件

如图:

 

问题解决步骤:

打开GitHub的设置Settings

GIT 出现fatal: Could not read from remote repository.解决_第1张图片

选择SSH KEYS设置,点击按钮

title随便写,用记事本打开id_rsa.pub文件将内容全部复制,将内容全部粘贴到key中然后点击add ssh key 按钮,一般即可解决问题。

============================================================================如果id_rsa、id_rsa.pub两个文件已存在出现该错误可删除俩个文件,重新执行:(黄色区域为本人邮件地址)

$ ssh-keygen -t rsa -C "[email protected]"

[email protected]"

GIT 出现fatal: Could not read from remote repository.解决_第2张图片.shh文件夹会重新生成id_rsa、id_rsa.pub两个文件及新的Key

重新执行上述步骤添加到GitHub中即可

GIT 出现fatal: Could not read from remote repository.解决_第3张图片

大功告成!

 

你可能感兴趣的:(Git)