克隆git代码到本地时报“fatal: Could not read from remote repository. Please make sure you have the correct acc

克隆代码时报错:git@gitee.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.

怎么解决:

先查看当前的账号和邮箱,

git config user.name

git config user.email

如果有误的话可以切换用户名和邮箱:

git config --global user.name "xxx"

git config --global user.email "xxx"

如果没错的话,很可能就是不同设备上的ssh公钥不同,比如我有两台电脑,其中git仓库用的是其中一台电脑产生的ssh公钥()但不同设备产生的公钥是不能互用的,所以如果要克隆git上的代码到另一台设备上,就需要让另一台设备产生的公钥也添加到git上

生成公钥的命令:

ssh-keygen -t rsa -C "xxxxx@xxxxx.com"  
接下来终端显示的内容就是需要你回车和输入密码了
中文翻译 
上一篇:源码解析为什么spring 被@Repository注解标识注入后是代理类


下一篇:定位Unity安卓包不易现的Bug方案——在Android Studio里面调试Unity的安卓包