最近配置了github的ssh key,翻找了大量资料后发现github官方就有相关的教程……在此翻译一下官方教程以加深印象
原文链接:https://help.github.com/categories/ssh/
Generating an SSH key(生成SSH key)
SSH密钥是来识别值得信赖的电脑的方法。您可以生成一个SSH密钥,并按照本节所述的方法将公共密钥添加到您的帐户GitHub中。
Checking for existing SSH keys(检查已存在的SSH key)
在你生成一个ssh key之前,你可以检查一下你是否已经有了ssh key:
- 打开Git Bash
- 输入
来查看是否有ssh key存在ls -al ~/.ssh
- 检查/.ssh目录来查看是否存在公开的ssh key
一般而言,公开的ssh key的文件名为以下几种:
- id_dsa.pub
- id_ecdsa.pub
- id_ed25519.pub
- id_rsa.pub
Generating a new SSH key and adding it to the ssh-agent(生成一个新的SSH key并添加到ssh-agent)
在你检查过存在的ssh key后,你可以新建一个ssh key:
- 打开Git Bash
- 输入这一串:
生成一个新的ssh key,使用填入的邮箱地址作为ssh key的标签,并生成RSA密钥对ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
- 看到如下提示时:
按下回车,表示把ssh key放在默认地址Enter a file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter]
- 然后为ssh key设置密码:
Enter passphrase (empty for no passphrase): [Type a passphrase] Enter same passphrase again: [Type passphrase again]
创建完ssh key后,你需要把它添加到ssh-agent中去:
- 首先保证ssh-agent启用了:
该指令返回进程id则表示已经启用ssh-agenteval "$(ssh-agent -s)"
- 使用如下指令把ssh key添加到ssh-agent中:
ssh-add ~/.ssh/id_rsa
Adding a new SSH key to your GitHub account(为你的github账号添加SSH key)
在把ssh key添加到ssh-agent后,你需要把ssh key添加到你的github账号中:
- 打开Git Bash,使用指令把ssh key复制到剪贴板:
如果不成功就用编辑器打开该文件直接复制内容clip < ~/.ssh/id_rsa.pub
- 在github右上角点击setting:
- 在左边选择SSH and GPG keys:
- 点击New SSH key:
- 在Title处为你的ssh key填入适当的标题,在Key处粘贴你复制的ssh key
- 点击Add SSH key:
- 输入你的github账号密码确认此次行动
Testing your SSH connection(测试你的SSH连接)
在进行完上面一系列操作后,是时候看看你的SSH连接是否成功了:
- 打开Git Bash
- 输入以下指令:
尝试去用ssh连接github,你可能会看到一些警告信息:ssh -T git@github.com
输入yes不管他就好The authenticity of host 'github.com (192.30.252.1)' can't be established. RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48. Are you sure you want to continue connecting (yes/no)?
- 如果你看到一下信息:
则表示ssh连接成功了Hi username! You've successfully authenticated, but GitHub does not provide shell access
- 如果你收到的信息是"access denied" ,那么你可以参考一下链接进行进一步处理:https://help.github.com/articles/error-permission-denied-publickey/
Changing a remote's URL(改变远程仓库的URL)
在设置完ssh后,你可能需要把你的远程仓库的URL从HTTPS改为SSH(SSH好处在于不用每次push都输账号密码……):
- 打开GIt Bash
- 把工作目录转到你的本地工程中
- 查看拥有的远程仓库:
git remote -v
- 更改远程仓库的url:
origin为仓库名,后面接的是ssh仓库地址:git remote set-url origin https://github.com/USERNAME/OTHERREPOSITORY.git
- 查看拥有的远程仓库,看看是否修改成功:
git remote -v
至此Github的SSH key配置大功告成,以后push再也不用每次都输入github的账号密码了~