git@github.com:权限被拒绝(公钥)错误

时间:2019-05-30 14:02:58

标签: reactjs git github iterm2 iterm

我一直在尝试推向起源大师,现在我遇到了另一个错误

git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

如何重新连接我的github?我尝试了多种不同的东西。

1 个答案:

答案 0 :(得分:0)

如果尚未生成,则需要在计算机上生成SSH密钥。

这可以通过在.ssh文件夹中运行以下命令来完成

ssh-keygen -t ecdsa -b 521 -f 'filepath/id_ecdsa'

有关ssh command的更多阅读内容。

这将生成一个公钥和私钥对。您需要将添加到您的github帐户中的公共密钥添加或用于特定回购。

cat id_ecdsa.pub,并将其添加到github存储库的SSH密钥中。

请注意,上面的文件名可以是任何名称。我只是以ecdsa加密类型命名。