添加SSH密钥到GitHub

Posted xixihuang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加SSH密钥到GitHub相关的知识,希望对你有一定的参考价值。

$ clip < ~/.ssh/id_rsa.pub
bash: /c/Users/huangxi/.ssh/id_rsa.pub: No such file or directory

【转】Generating SSH keys 生成 SSH 密钥

Step 1、检查本机现有的SSH密钥

检查~/.ssh看看是否有名为d_rsa.pub  和id_dsa.pub的2个文件。如果你什么都没得到这些文件,转到  步骤2 ;否则,请跳到  第3步

打开你的Git Bash,输入:

$ ls -al ~/.ssh

Step 2、创建一个新的SSH密钥

注意期间“输入密码(空没有密码):再次输入密码]:[键入密码]#再次输入相同的密码”,如下:

“Enter passphrase (empty for no passphrase): [Type a passphrase] # Enter same passphrase again:”
可不管,直接一路ENTER。

$ ssh-keygen -t rsa -C "[email protected]"    

$ ssh-keygen -t rsa -C "[email protected]"
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/huangxi/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /c/Users/huangxi/.ssh/id_rsa.
Your public key has been saved in /c/Users/huangxi/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:rwuerTS5wjzt86GtvvVt0jwm5nquIJWpdXt+kw2exYU [email protected]
The key‘s randomart image is:
+---[RSA 2048]----+
| |
| |
| . |
| o E .|
| = S . . |
| + o o . o |
| oo.* + o+ * |
| [email protected] *=.% . |
| [email protected]*OO=*.o |
+----[SHA256]-----+

 现在你的公钥已经保存在/c/Users/you/.ssh/id_rsa.pub中。

如果以上“ssh-keygen 生成一个公钥私钥”的过程中选择设置了密码,及可通过“ssh-add”来实现ssh免密码登陆。(详情可参照“ssh-agent用法”)

添加新的SSh密钥到ssh-keyen中:

$ eval "$ (ssh-agent -s)"  #ssh-agent启动之后,如果通过公钥做身份验证,只需第一次输入密码,以后ssh-agent会帮你自动输入。

Step 3、将你的SSH key添加到GitHub

运行以下代码复制id_rsa.pub到剪切板:

$ clip < ~/.ssh/id_rsa.pub

手动复制 ~/.ssh文件夹下的id_rsa.pub。

现在将其添加到GitHub上(参考GitHub官网教程“Adding a new SSH key to your GitHub account”):

  1. 在页面的用户栏的右上角,单击  Settings 
  2. 在左侧边栏点击 SSH and GPG keys.
  3. 点击   New SSH key 
  4. Title标题区域中,为新的SSH密钥添加一个描述性标签。例如,如果您使用的是个人的PC,您可以调用这个关键的“Personal MacBook Air”;
  5. 粘贴您的钥匙插入 Key 区域中;
  6. 点击  Add SSH key 
  7. 确认通过输入操作GitHub的密码

Step 4、测试SSH key是否成功的添加到GitHub

$ ssh -T [email protected] # 用 ssh 连接 github

$ ssh -T [email protected]

The authenticity of host ‘github.com (192.30.252.130)‘ can‘t be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘github.com,192.30.252.130‘ (RSA) to the list of known hosts.
Hi xixihuang! You‘ve successfully authenticated, but GitHub does not provide shell access.

以上是关于添加SSH密钥到GitHub的主要内容,如果未能解决你的问题,请参考以下文章

如何从已将 SSH 密钥添加到工作相关 GitHub 帐户的办公计算机上处​​理个人 GitHub 存储库?

将 GitHub ssh 密钥添加到 ec2 实例

生成SSH密钥添加到GitHub

学习:使用git,添加ssh密钥到github

text 在Windows PC上添加SSH密钥到github

如何避免每次推送或拉取代码时都添加 ssh 密钥