Git—win10配置

安装git

  1. 从官网直接下载win10的安装包,直接一路安装即可;
  2. 安装完成之后,打开git-bash;
  3. 输入你的git的用户名和邮箱(代码如下),这样就设置好了
git config --global user.name "your name"
git config --global user.email "[email protected]"

生成shh秘钥

代码如下:

ssh-keygen -t rsa -C "[email protected]"(这里就是你上面的邮箱)

按回车之后的效果如下图,即为成功:


Git—win10配置_第1张图片

成功生成 ssh 截图

最后得到了两个文件:id_rsa和id_rsa.pub。(其中id_rsa是你自己的秘钥,id_rsa.pub是给别人的公钥),一般位于 C:\Users\username.ssh

你可能感兴趣的:(Git—win10配置)