尝试生成 SSH 密钥时出现 GIT Bash 错误

尝试生成 SSH 密钥时出现 GIT Bash 错误

我正在使用以下链接:

https://help.github.com/en/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent

当我复制并粘贴:,在引号内替换我自己的 github 电子邮件时,我收到错误。$ ssh-keygen -t rsa -b 4096 -C "[email protected]"

以下是我粘贴的内容和我收到的错误:

$ $ ssh-keygen -t rsa -b 4096 -C "[email protected]"
bash: $: command not found 

谁能帮我吗?

答案1

谁能帮我吗?

当我复制并粘贴时:$ ssh-keygen -t rsa -b 4096 -C "[email protected]"

您已复制$命令提示符。

您应该粘贴的内容是:

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

无前导$

相关内容