ssh-keygen -m PEM -t rsa -b 4096 -C "your.email@example.com" | |
# Creates a new ssh key, using the provided email as a label | |
# Generating public/private rsa key pair. | |
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” 时,输入一个新的文件名称就不会覆盖默认的密钥对。