github添加ssh key后怎么使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github添加ssh key后怎么使用相关的知识,希望对你有一定的参考价值。
参考技术A 检查SSH是否失效在git命令行中进行git操作的时候,发现原来设置过的SSH
key已经失效;登陆到github网站上查看,图标呈现灰色;好了,发现问题所在;
设置用户名和邮箱
在git命令行中对git进行全局设置,
git
config
--global
user.name
"用户名",
git
config
--global
user.email
"邮箱地址";
生成SSH
key
在git命令行中,输入命令:
cd
~/.ssh,来检测是否生成过key,没有生成过key,会有相关信息提示;然后输入命令:
ssh-keygen
-t
rsa
-C
“邮箱地址”,按下回车键;然后根据返回的信息,找到.ssh目录下的两个文件;
在github上添加SSH
key
在github上点击“setting”,找到添加SSH
key的菜单,然后新增SSH
key;把文件id_rsa.pub
里面的内容全部复制到
key编辑框中,保存完毕;
检查SSH
key是否有效
在git命令行输入:ssh
-T
git@github.com;这里会要求你输入SSH
key密码,如果刚才生成SSH
key时未输入密码,密码就为空;然后看到信息:
ERROR:
Hi
用户名!
You’ve
successfully
authenticated;说明配置成功;
再次查看github密钥
登陆到github上查看刚刚输入的SSH
key,现在图标的颜色变为绿色,说明密钥配置有效;现在可以在git命令行上进行git操作了;
如何生成SSH key
1、首先,使用两个git config ...命令设置用户名和电子邮件地址,然后使用ssh-keygen命令生成一对rsa密钥。
2、生成后,根据输出提示,打开存储密钥的文件夹,可以看到两个文件。私钥,公钥。使用文本编辑器打开id_rsa.pub文件。稍后将使用该副本的内容。
3、登录github,单击您的头像并转到“设置”设置。
4、切换到SSH和GPG密钥,然后单击SSH密钥右侧的新SSH密钥。
5、然后在添加新页面上,上面的标题写入标题并粘贴刚刚复制的公钥。
6、保存如下图所示。它可以使用。
参考技术A 如何生成SSH keySSH key提供了一种与GitHub通信的方式,通过这种方式,能够在不输入密码的情况下,将GitHub作为自己的remote端服务器,进行版本控制
步骤
检查SSH keys是否存在
生成新的ssh key
将ssh key添加到GitHub中
如何生成SSH KEY
1. 检查SSH keys是否存在
输入下面的命令,如果有文件id_rsa.pub 或 id_dsa.pub,则直接进入步骤3将SSH key添加到GitHub中,否则进入第二步生成SSH key
ls -al ~/.ssh
# Lists the files in your .ssh directory, if they exist
2. 生成新的ssh key
第一步:生成public/private rsa key pair
在命令行中输入ssh-keygen -t rsa -C "your_email@example.com"
默认会在相应路径下(/your_home_path)生成id_rsa和id_rsa.pub两个文件,如下面代码所示
ssh-keygen -t rsa -C "your_email@example.com"
# Creates a new ssh key using the provided email
Generating public/private rsa key pair.
Enter file in which to save the key (/your_home_path/.ssh/id_rsa):
第二步:输入passphrase(本步骤可以跳过)
设置passphrase后,进行版本控制时,每次与GitHub通信都会要求输入passphrase,以避免某些“失误”
Enter passphrase (empty for no passphrase): [Type a passphrase]
Enter same passphrase again: [Type passphrase again]
sample result:
Your identification has been saved in /your_home_path/.ssh/id_rsa.
Your public key has been saved in /your_home_path/.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@example.com
第三步:将新生成的key添加到ssh-agent中:
# start the ssh-agent in the background
eval "$(ssh-agent -s)"
Agent pid 59566
ssh-add ~/.ssh/id_rsa
3. 将ssh key添加到GitHub中
用自己喜欢的文本编辑器打开id_rsa.pub文件,里面的信息即为SSH key,将这些信息复制到GitHub的Add SSH key页面即可
不同的操作系统,均有一些命令,直接将SSH key从文件拷贝到粘贴板中,如下:
mac
pbcopy < ~/.ssh/id_rsa.pub
# Copies the contents of the id_rsa.pub file to your clipboard
windows
clip < ~/.ssh/id_rsa.pub
# Copies the contents of the id_rsa.pub file to your clipboard
linux
sudo apt-get install xclip
# Downloads and installs xclip. If you don't have `apt-get`, you might need to use another installer (like `yum`)
xclip -sel clip < ~/.ssh/id_rsa.pub
# Copies the contents of the id_rsa.pub file to your clipboard本回答被提问者和网友采纳 参考技术B Git是分布式的代码管理工具,远程的代码管理是基于SSH的,所以要使用远程的Git则需要SSH的配置。
github的SSH配置如下:
1 、设置Git的user name和email:
$ git config --global user.name "xuhaiyan"
$ git config --global user.email "haiyan.xu.vip@gmail.com"
2、生成SSH密钥过程:
1)查看是否已经有了ssh密钥:cd ~/.ssh
如果没有密钥则不会有此文件夹,有则备份删除
2)生存密钥:
$ 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
3)添加密钥到ssh:ssh-add 文件名
需要之前输入密码。
4)在github上添加ssh密钥,这要添加的是“id_rsa.pub”里面的公钥。
打开https://github.com/ ,登陆xuhaiyan825,然后添加ssh。
5)测试:ssh git@github.com
The authenticity of host ‘github.com (207.97.227.239)’ 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)? yes
Warning: Permanently added ‘github.com,207.97.227.239′ (RSA) to the list of known hosts.
ERROR: Hi tekkub! You’ve successfully authenticated, but GitHub does not provide shell access
Connection to github.com closed.
以上是关于github添加ssh key后怎么使用的主要内容,如果未能解决你的问题,请参考以下文章
Git------应用TortoiseGit为github账号添加SSH keys