github生成SSH公钥,githubssh


1 如果没有安装ssh,先安装ssh
sudo apt-get install ssh
2 检查SSH公钥
cd ~/.ssh

看看存不存在.ssh,如果存在的话,跳过第3步。


3 生成SSH公钥

$ ssh-keygen -t rsa -C "your email address "

再次检查ssh公钥,如果有.ssh说明添加成功


3.1 输入github密码
Enter passphrase (empty for no passphrase): [Type a passphrase]  Enter same passphrase again: [Type passphrase again]

这个时候输入你在github上设置的密码。


3.2 然后在.ssh中可以看到
Your identification has been saved in /home/you/.ssh/id_rsa.  # Your public key has been saved in /home/you/.ssh/id_rsa.pub. # The key fingerprint is:  # 01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db your email address
4 添加SSH公钥到github

打开github,找到账户里面添加SSH,把idrsa.pub内容复制到key里面。


5 测试是否生效

使用下面的命令测试

ssh -T git@github.com

相关内容

    暂无相关文章