查找已使用密钥的位置
要确定哪些地方已经使用该密钥,请打开终端并键入 ssh
命令。 使用 -i
� �记提供要检查的密钥的路径:
$ ssh -T -ai ~/.ssh/id_rsa git@主机名
# Connect to your GitHub Enterprise Server instance using a specific ssh key
> Hi username! You've successfully authenticated, but GitHub does not
> provide shell access.
The username in the response is the account on your GitHub Enterprise Server instance that the key is currently attached to. 如果响应类似于 "username/repo",则表示密钥已作为部署密钥附� 到仓库。
要强制 SSH 仅使用命令行上提供的密钥,请使用 -o
添� IdentiesOnly=yes
选项:
$ ssh -v -o "IdentitiesOnly=yes" -i ~/.ssh/id_rsa git@主机名
修复问题
为解决此问题,请先从其他帐户或仓库� 除该密钥,然后将其添� 到帐户。
如果没有� 输密钥的权限,请联系有权限的用户,� 除密钥对并生成新的密钥对。
部署密钥
在密钥作为部署密钥附� 到一个仓库后,� 法再用于另一个仓库。 如果在设置部署密钥时出现此错误,请参阅“管理部署密钥”。