Git SSH Key 生成相关步骤

查看SSH Key

$ cd .ssh

进入该文件后,查看下该文件夹下的文件:

$ ls

图1

如上图:

  • id_rsa:私钥
  • id_rsa.pub:公钥

生成SSH Key

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

该命令会生成新的SSH Key,输入GitHub上的邮箱即可

Enter a file in which to save the key (/Users/you/.ssh/id_rsa):

这里,直接按回车,默认存储在.ssh文件里

Enter passphrase (empty for no passphrase):
Enter same passphrase again:

关于密码的设置和确认密码,不需要直接按回车

Mac环境下,显示隐藏文件/不显示隐藏文件

  • 显示

$ defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder

  • 不显示

$ defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder

你可能感兴趣的:(Git SSH Key 生成相关步骤)