以Collaborator身份克隆GitHub存储库时权限被拒绝(公钥)错误

mftmpeh8  于 2023-06-20  发布在  Git
关注(0)|答案(1)|浏览(211)

我最近加入了GitHub上的一个项目作为合作者。项目的存储库已经与我共享,我已经将我的公钥添加到我的GitHub帐户。然而,当我从GitHub克隆项目并运行命令'flutter pub get'来解决依赖关系时,我遇到了以下错误消息:

Resolving dependencies... (8.0s)
Git error. Command: `git fetch`
stdout: 
stderr: 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.
exit code: 128

我正在寻求帮助,以了解为什么我面临这个问题,尽管我被添加为GitHub上项目的合作者。任何见解或建议,以解决这个问题将不胜感激。

pbpqsu0x

pbpqsu0x1#

如果发生这种情况,您可能忘记了在教程中添加SSH密钥到您的帐户的一些步骤。
请仔细遵循本指南中的所有说明,然后重试:https://docs.github.com/pt/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account

相关问题