美文网首页
Git SSH Key 生成步骤

Git SSH Key 生成步骤

作者: JerryQi | 来源:发表于2017-03-12 19:11 被阅读0次

1. 设置Git的user name和email:

$ git config --global user.name "xuhaiyan"
$ git config --global user.email "haiyan.xu.vip@gmail.com"

2. 查看是否已经有了ssh密钥:cd ~/.ssh

3. 生成密钥

$ ssh-keygen -t rsa -C “haiyan.xu.vip@gmail.com
按3个回车,密码为空。

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

4.

$ eval ssh-agent (是~键上的那个`)

5. 添加密钥到ssh

ssh-add 文件名

6. 在github上添加ssh密钥,这要添加的是“id_rsa.pub”里面的公钥。

相关文章

网友评论

      本文标题:Git SSH Key 生成步骤

      本文链接:https://www.haomeiwen.com/subject/clkxnttx.html