【Git】报错(“fatal:|【Git】报错:“fatal: Could not read from remote repository”)

提交代码时报此错: 在使用git提交代码时出现 fatal: Could not read from remote repository 这个错误,很简单
首先,将本地生成的 id_rsa以及id_rsa.pub这两个文件删除掉
【【Git】报错(“fatal:|【Git】报错:“fatal: Could not read from remote repository”)】然后,使用命令 ssh-keygen -t rsa -C "邮箱地址"重新生成密钥
【Git】报错(“fatal:|【Git】报错:“fatal: Could not read from remote repository”)
文章图片
最后,将id_rsa.pub文件里的内容复制到 git 的SSH key保存目录下即可。
【Git】报错(“fatal:|【Git】报错:“fatal: Could not read from remote repository”)
文章图片




克隆项目时报此错:
在使用 git clone XX 命令从git上下拉代码时,也出现报这个错误,可是我明明ssh key已经配好了,为什么还会出现这样的事呢?查过才知道,一个坑啊。。
【Git】报错(“fatal:|【Git】报错:“fatal: Could not read from remote repository”)
文章图片
看圈出来的这个地方 【Git】报错(“fatal:|【Git】报错:“fatal: Could not read from remote repository”)
文章图片
这样就好了

    推荐阅读