解决码云出现[email protected]: Permission denied (publickey).

很久之前好像改了ssh的一些配置,导致现在对git进行一些操作时,就会出现 


官方解决文档: 
http://git.mydoc.io/?t=154712

1)、重新生成ssh 
ssh-keygen -t rsa -C “[email protected]” 
2)、查看你的 public key 
cat ~/.ssh/id_rsa.pub 
(以ssh-rsa 开头,以账号的注册邮箱结尾的) 
3)、将它添加到码云,添加地址 https://gitee.com/profile/sshkeys 


4)、终端输入 
ssh -T [email protected] 
5)、完成啦~ 

配置git昵称

$ git config --global user.name author #将用户名设为author
$ git config --global user.email [email protected] #将用户邮箱设为[email protected]

--------------------- 
作者:yyuand 
来源:CSDN 
原文:https://blog.csdn.net/dyy_csdn/article/details/81508809 
版权声明:本文为博主原创文章,转载请附上博文链接!

你可能感兴趣的:(windows,php,git,github)