mac更新后不知道怎么回事,git时出现了
Permission denied (publickey).
经查询后得出原因
1、首先给git进行config的配置
git config --global user.name 你的用户名 git config --global user.email 邮箱地址
2、生成公钥
ssh-keygen -t rsa -C 你的邮箱 回车后出现 Enter file in which to save the key (/Users/pantierui/.ssh/id_rsa): xxxxxxx(此处为key等名字) 不要输入信息,继续回车,接下来两行是你的验证密码,输入两次就行。最后生成成功。
3、在~/.ssh/目录下找到.pub的文件,打开复制全部,在gitgtee里把公钥添加进去即可完成。
标签:git,global,rsa,mac,ssh,config,远程 From: https://www.cnblogs.com/youyuan1980/p/16882529.html