欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ideal中git的使用

程序员文章站 2022-06-03 18:29:26
...

开发环境:Ideal+git+gitee

问题1、    Git Pull Failed
            aaa@qq.com: Permission denied (publickey).
            Could not read from remote repository.
            Please make sure you have the correct access rights
            and the repository exists.

ideal中git的使用

提交代码时如上报错,我是因为,重新生成过公匙,因此修改掉了原来的,所以此处需要重新生成一下公钥,然后再在码云中添加一下

操作步骤:

①、桌面右键打开 Git bash here  。输入

ssh-****** -t rsa -C "自己的邮箱地址"

ideal中git的使用

②、执行上面的命令回生成公钥,然后输入下面命令查看公钥

cat ~/.ssh/id_rsa.pub

③、复制公钥内容添加到码云中,如下图找到项目中添加公钥的地方,点击添加公钥

ideal中git的使用