Git ssh公钥配置

Posted yangshifu

tags:

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

首先下载安装git:https://git-scm.com/downloads/

一路默认,安装完成后,打开文件夹C:UsersAdministrator.ssh(Administrator是当前用户名),在空白处点鼠标右键选择“Git Bush Here” ,打开gitbush。

配置用户名和邮箱:

$ git config --global user.name "your_name"

$ git config --global user.email "[email protected]"

生成密钥对:

ssh-keygen -t rsa -b 4096 -C "[email protected]"

此时文件夹中会生成两个密钥文件:

技术分享图片

 

打开id_rsa.pub,将文件内容全选复制,准备粘贴到github上:

技术分享图片

 

登陆github,点击右上角头像,选择Settings,选择SSH and GPG keys:

技术分享图片

 

点击“New SSH key”,将复制的密钥内容粘贴进Key的输入框,Title随便取:

技术分享图片

 

回到gitbush,测试输入: ssh -T [email protected]

技术分享图片

如果遇到 yes/no 的选项,输入yes。最后看到 “Hi ....”表示设置成功。

 

以上是关于Git ssh公钥配置的主要内容,如果未能解决你的问题,请参考以下文章

码云(gitee)配置ssh密钥

git配置SSH公钥

git SSH公钥配置

怎么拷贝git公钥文件

git ssh 密钥生成以及配置

配置ssh后在git上生成了一个邮箱