Git问题 “fatal: Could not read from remote repository.“

Posted Daniel_Muei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git问题 “fatal: Could not read from remote repository.“相关的知识,希望对你有一定的参考价值。

问题描述

今天在下载数据集的时候,利用git将远程仓库推到本地仓库时,给我报了这个错:“fatal: Could not read from remote repository.”,找了一下原因,应该是客户端和服务端生成的SSH key不匹配,或者未生成SSH key。

解决方案

重新生成一次SSH key,并重新配置一下GitHub账户。

步骤

1、在Git Bash上输入命令:ssh-keygen -t rsa -C "youremail@xxx.com,邮箱换成你自己的即可,这一步操作会生成新的rsa密钥。
如果是客户端与服务端的ssh key 不匹配,此时需要先将本地生成的 id_rsa以及id_rsa.pub这两个文件(一般在用户名下的.ssh文件夹下)删掉,然后再使用上述命令生成新的rsa密钥。
我的原因时是客户端与服务端未生成SSH key,所以直接输出命令。

2、使用ssh-add ~/.ssh/id_rsa将产生的新SSH key添加到SSH-agent中。
如果出现 “Could not open a connection to your authentication agent.” 的错误可以使用以下两种方式解决:

# 任选一种
eval "$(ssh-agent -s)"
eval `ssh-agent`

然后再次执行ssh-add ~/.ssh/id_rsa命令。

3、将SSH key添加到你的GitHub账户中,在账户选项中选择 “Settings"–>“SSH and GPG keys”–>"New SSH key”,然后打开之前新生成的id_rsa.pub文件,将密钥复制后填写到账户中。

4、使用ssh -T git@github.com进行验证,若出现 "Hi!…"的提示,说明成功,继续用git clone即可。

以上是关于Git问题 “fatal: Could not read from remote repository.“的主要内容,如果未能解决你的问题,请参考以下文章

如何调试 git/git-shell 相关问题?

idea中右下角没有git branch问题

Git关于VSCode 内置Git问题

如何调试git / git-shell相关问题?

Git子模块添加:“在本地找到一个git目录”问题

ssh链接git服务器,解决push pull要求输入密码问题