在提交Gitee仓库中,进行远程推送,执行 git push -u origin "master" 命令后报错,错误如下:

D:\veb\program\project\quyigou-vue2> git push -u origin "master"
git@gitee.com: Permission denied (publickey).

Please make sure you have the correct access rights
and the repository exists

最后判定是在本地(或服务器上)没有生成SSH公钥,解决方案如下:

第一步:终端执行如下代码,重新生成ssh。

ssh-keygen -t rsa -C  "这里是你自己注册Gitee的邮箱@xxx.com"

执行后出现

Generating public/private rsa key pair.
Enter file in which to save the key (C:\Users\韩韩/.ssh/id_rsa): ^V

第二步:终端执行如下代码,查看你的public key。

cat ~/.ssh/id_rsa.pub

第三步:将你的public key 复制到码云如下位置

第四步:终端出入下述代码就完成啦。

ssh -T git@gitee.com

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐