Git 生成SSH秘钥
参考页面 :https://blog.csdn.net/u011138533/article/details/51879439
SSH配置如下:
一 、
设置Git的user name和email:
$ git config --global user.name "YongHuMing" $ git config --global user.email "个人邮箱xxxx@qq.com"
二、生成SSH密钥过程:
1.查看是否已经有了ssh密钥:cd ~/.ssh
如果没有密钥则不会有此文件夹,有则备份删除
2.生成密钥:
$ ssh-keygen -t rsa -C “email@email.com”
按3个回车,密码为空。
(email@email.com是github的账号,即上面的email)
Your identification has been saved in /home/tekkub/.ssh/id_rsa.
Your public key has been saved in /home/tekkub/.ssh/id_rsa.pub.
The key fingerprint is:
………………
最后得到了两个文件:id_rsa(密钥)和id_rsa.pub(公钥)