git问题总结
程序员文章站
2022-05-28 12:20:58
...
1.Failed with error: ERROR: Repository not found. Could not read from remote repository.
原因:别的盘存在多余的ssh文件(id_rsa.pub),造成冲突。
解决:删除所有的ssh文件,重新生成
ssh-****** -t rsa –C “[email protected]”
网络解决方式:
git remote rm origin
//进入你的.ssh文件夹
eval $(ssh-agent)
//然后
ssh-add id_rsa
// 然后
ssh-add -l
//如果你输出了一串rsa秘钥,那么问题就解决啦