Git如何添加SSH Key

  1. Windows平台下,首先安装Git .
  2. 设置 git config --global user.email "[email protected]"
  3. 同样 的设置 git config --global user.name "example"
  4. git输入命令ssh-keygen -t rsa -C "[email protected]"
  5. windows下在user/用户名/里面找到.ssh文件夹 复制id_rsa.pub内容到github,登陆GitHub,打开"Account settings","SSH Keys"页面:然后,点"Add SSH Key",填上任意Title,在Key文本框里粘贴 id_rsa.pub

给个github follow me的链接,上面有很多初学者可供学习的资料,项目.

https://github.com/SuperZee

你可能感兴趣的:(Git如何添加SSH Key)