本篇内容主要是为了记录一下命令,方便以后操作。
主要使用 ssh-keygen
工具生成 SSH 公钥,执行命令:
ssh-keygen -m PEM -t ed25519 -C "your.email@example.com" // 创建新的 SSH 私钥与公钥密钥对,输入你的邮箱作为标签
Enter file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter] // 推荐使用默认地址
Enter passphrase (empty for no passphrase): // 此处直接回车即可;若设置密码,则每次使用 SSH 方式推送代码时都会要求输入密码
若你需要使用多个 SSH 密钥对,在 Enter file in which to save the key
步骤时,输入一个新的文件名称就可以避免覆盖已有的密钥对。
若您的系统不支持 Ed25519 算法,请使用命令
ssh-keygen -m PEM -t rsa -b 4096 -C "your.email@example.com"
。
成功之后显示如下信息:
Your identification has been saved in /Users/you/.ssh/id_ed25519.
# Your public key has been saved in /Users/you/.ssh/id_ed25519.pub.
# The key fingerprint is:
# 01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db your.email@example.com
生成完之后就可以添加到你们需要使用的地方即可。
评论前必须登录