git如何生成ssh密钥 git生成配置ssh密钥key详细步骤

Posted 执着的涛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git如何生成ssh密钥 git生成配置ssh密钥key详细步骤相关的知识,希望对你有一定的参考价值。

git如何生成ssh密钥 ?有不少朋友们在下载git以后,不知道如何使用git软件生成配置密钥key。今天小编就来给大家说明一下git生成配置ssh密钥key详细步骤。

具体步骤如下:

1、在电脑桌面,鼠标右键,选择"Git Bash Here",打开Git命令窗口;

2、在Git命令窗口中配置用户,输入如下命令:

git config --global user.name "blkj"

其中:"blkj"是你自己要填写的用户名

3、继续在Git窗口中配置邮箱,输入如下命令:

git config --global user.email "blkj@boranet.com.cn"

其中:"blkj@boranet.com.cn"是用户自己的邮箱地址

4、此时会在C:\\Users\\Administrator目录下生成.gitconfig配置文件(此文件不能删除);

5、查看.gitconfig配置文件里的内容;

6、继续在Git命令窗口中输入如下命令,即可生成SSH公钥和私钥

ssh-keygen -t rsa -C "blkj@boranet.com.cn"

7、进入C:\\Users\\Administrator\\.ssh目录下,查看生成的SSH密钥;

8、在Git窗口中输入如下命令,可以查看公钥和私钥

cat ~/.ssh/id_rsa.pub

以上就是git如何生成ssh密钥的方法介绍了,希望对各位朋友们有所帮助。

以上是关于git如何生成ssh密钥 git生成配置ssh密钥key详细步骤的主要内容,如果未能解决你的问题,请参考以下文章

码云(gitee)配置ssh密钥

git ssh密钥生成与配置

如何将已生成的 SSH 密钥添加到 git bash?

转:Git SSH Key 生成的步骤

git如何使用ssh密钥

git ssh密钥配置添加