0x00 简述
本帖专门用于记录本博客后期维护中出现的各种问题的解决方案,长期维护更新。
0x01 更新博客提示“Please make sure you have the correct access rights and the repository exists”
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| 1、重新在git设置一下身份的名字和邮箱 git config --global user.name "yourname" git config --global user.email 'your@email.com'
2.删除.ssh文件夹下的know_hosts 注:在C盘用户文件夹下.ssh,点击进入,手动删除know_hosts
3、git输入命令 $ ssh-keygen -t rsa -C 'your@email.com' 注:填写自己设置的邮箱地址
4、当本地秘钥成功生成后进入本地C盘用户文件夹目录下 .ssh 文件夹 5、用记事本打开id_rsa.pub,将其全部复制 6、进入github的设置页面,选择SSH and GPS keys选项,删除原有SSH keys。 7、选择 New SSH key,输入刚才复制的秘钥,并保存。 8、进入git命令行下,输入 ssh -T git@github.com 查看是否问题已解决。
注:也有可能是网络状态不稳定造成的,可以尝试换个网络尝试下。
|
0x02