Please make sure you have the correct access rights and the repository exists.问题解决

前两天想把自己的上课笔记push到自己的gitee的远程仓库上,出现了如下错误:
Please make sure you have the correct access rights and the repository exists.问题解决_第1张图片
在网上找了很多教程都没有解决,网上找的解决方案无非是在本地生成id_rsa和id_rsa.pub文件,再将id_rsa.pub内的内容全部复制、添加到GitHub的账户设置的SSH keys中。
具体操作参照:如何生成id_rsa和id_rsa.pub文件

但是我按照这些这个操作做了之后,本地提交还是报同样的错误,后面在老师的启发下,我发现我只是将id_rsa.pub中的内容添加到GitHub的SSH公钥上,我再将id_rsa.pub中的内容复制粘贴到gitee账户上的SHH公钥上,这个问题就解决了,在本地的终端上可以成功提交了。
Please make sure you have the correct access rights and the repository exists.问题解决_第2张图片

你可能感兴趣的:(github,git)