美文网首页
【Git】报错:“fatal: Could not read f

【Git】报错:“fatal: Could not read f

作者: 失语失芯不失梦 | 来源:发表于2019-02-28 21:07 被阅读0次

提交代码时报此错:

在使用git提交代码时出现 fatal: Could not read from remote repository 这个错误,很简单

首先,将本地生成的 id_rsa以及id_rsa.pub这两个文件删除掉

然后,使用命令 ssh-keygen -t rsa -C "邮箱地址"重新生成密钥

最后,将id_rsa.pub文件里的内容复制到 git 的SSH key保存目录下即可。

克隆项目时报此错:

在使用 git clone XX 命令从git上下拉代码时,也出现报这个错误,可是我明明ssh key已经配好了,为什么还会出现这样的事呢?查过才知道,一个坑啊。。

看圈出来的这个地方 这样就好了

相关文章

网友评论

      本文标题:【Git】报错:“fatal: Could not read f

      本文链接:https://www.haomeiwen.com/subject/gufluqtx.html