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密钥的方法介绍了,希望对各位朋友们有所帮助。
网友评论