安装git
- 从官网直接下载win10的安装包,直接一路安装即可;
- 安装完成之后,打开git-bash;
- 输入你的git的用户名和邮箱(代码如下),这样就设置好了
git config --global user.name "your name"
git config --global user.email "your@email.address"
生成shh秘钥
代码如下:
ssh-keygen -t rsa -C "humingx@yeah.net"(这里就是你上面的邮箱)
按回车之后的效果如下图,即为成功:
成功生成 ssh 截图
最后得到了两个文件:id_rsa和id_rsa.pub。(其中id_rsa是你自己的秘钥,id_rsa.pub是给别人的公钥),一般位于 C:\Users\username.ssh