当前位置: 代码迷 >> 综合 >> Git提交项目:Please make sure you have the correct access rights and the repository exists(已解决)
  详细解决方案

Git提交项目:Please make sure you have the correct access rights and the repository exists(已解决)

热度:56   发布时间:2024-03-07 15:05:48.0

公钥的问题,重新生成即可

第一步

设置身份名称

git config --global user.name “yourname”

设置你的邮箱

git config --global user.email “your@email.com”

第二步

直接删除.ssh文件夹,因为要重新生成嘛

第三步

git输入命令

ssh-keygen -t rsa -C “your@email.com”

看到出现的东东,直接按三下回车(我是这样的)

第四步

我们会看到刚刚删除的.ssh文件夹又生成了,复制里面id_rsa.pub文件内容
打开https://github.com/,登陆你的账户,进入设置,找到ssh设置

在key中将刚刚复制的内容粘贴进去

在这里插入图片描述
添加一个ssh,问题解决

  相关解决方案