克隆代码时报错: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"
接下来终端显示的内容就是需要你回车和输入密码了
中文翻译