Mac/Windows/Linux生成SSH key

搬运参考:windows下手动生成SSH key、查看git安装目录、Checking for existing ssh keys、Generating a new ssh key

前提条件:
如果是Windows系统,需要提前安装git;如果是Mac or Linux,在终端Terminal操作即可

步骤:

*(知道的忽略这步)查看git安装目录:

Mac OS:在命令行中输入which git
Windows系统:打开cmd输入where git
我的安装目录是:D:\Program Files\Git\usr\bin)


where git命令查看git安装目录

*检查是否已有SSH keys

Mac OS/Linux:打开终端
Windows:打开Git Bash
输入 ls -al ~/.ssh 查看是否已存在SSH keys:

$ ls -al ~/.ssh

检查列出的目录,是否有已存在的公钥SSH key. 默认情况下,公钥的文件名如下所列:

  • id_rsa.pub
  • id_ecdsa.pub
  • id_ed25519.pub
    如果没有公钥和私钥对的话,可以生成新的SSH key

生成新的ssh key

  1. Windows系统,打开 Git Bash.(Mac/Linux 打开终端Terminal)
  2. 粘贴一下命令,把邮箱地址替换成你自己的GitHub电子邮箱地址

$ ssh-keygen -t rsa -b 4096 -C "[email protected]"

这样会用你提供的邮箱地址作为标签创建一个新的ssh key

Generating public/private rsa key pair.

  1. 当终端显示 "Enter a file in which to save the key," 时,按Enter键。这样会选择默认的文件目录.

Enter a file in which to save the key (/c/Users/you/.ssh/id_rsa):[Press enter]

  1. 在提示窗口输入安全的密码passphrase.

Enter passphrase (empty for no passphrase): [Type a passphrase]
Enter same passphrase again: [Type passphrase again]

切换到git安装目录下的usr\bin,输入命令:

ssh-keygen -t rsa -C “邮箱名”
ssh-keygen -t rsa -C "[email protected]"

生成的ssh文件一般会保存在C:\Users\Administrator.ssh,会生成两个文件,公钥和密钥对~


.ssh

测试

用文本编辑器打开公钥文件id_rsa.pub,复制内容,添加到你的GitHub-Setting-ssh keys-New SSH key


Github添加ssh key

测试:
输入命令:

ssh -T [email protected]

然后输入上面步骤中设置的密码


你可能感兴趣的:(Mac/Windows/Linux生成SSH key)