我一直在尝试推送到原点大师,现在我得到了不同的错误
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?我尝试了多种不同的东西。
如果
尚未生成,则需要在计算机上生成 SSH 密钥。
这可以通过在 .ssh 文件夹中运行以下命令来完成
ssh-keygen -t ecdsa -b 521 -f 'filepath/id_ecdsa'
更多关于 ssh 命令的阅读。
这将生成公钥和私钥对。需要将公钥添加到 github 帐户或添加到特定存储库。
cat
id_ecdsa.pub
并将其添加到 github 存储库的 SSH 密钥中。
请注意,上面的文件名可以是任何内容。 我只是以加密类型命名它ecdsa
可取的。