赞
踩
如是我闻: 在新电脑上想推送分支,结果遇到了这个错误
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.
错误消息表明 Git 在尝试使用 SSH 密钥连接到 GitHub 时遇到了问题。以下是解决此问题的一般步骤总结:
首先,打开终端,检查是否有一个 SSH 密钥对(公钥和私钥):
ls ~/.ssh
如果看到 id_rsa
和 id_rsa.pub
(或其他以 .pub
结尾的文件),说明已经有一个 SSH 密钥对。如果没有,需要生成一个新的 SSH 密钥对。
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
按提示操作,将密钥文件保存到默认位置(~/.ssh
)。
确保 SSH 代理正在运行,然后将 SSH 私钥添加到 SSH 代理:
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
需要将生成的公钥添加到我们的 GitHub 账户中:
打开公钥文件并复制内容:
cat ~/.ssh/id_rsa.pub
登录到 GitHub。
转到 Settings
-> SSH and GPG keys
-> New SSH key
。
将复制的公钥内容粘贴到 “Key” 字段,并为密钥命名,然后点击 “Add SSH key”。
测试是否能够成功连接到 GitHub:
ssh -T git@github.com
应该看到类似于以下的消息:
Hi yourusername! You've successfully authenticated, but GitHub does not provide shell access.
回到项目目录,再次尝试推送分支:
git push origin your-branch-name
确保在 GitHub 上添加的是正确的公钥文件内容。
确保的 SSH 代理在运行并且已经添加了私钥。
如果有多个 SSH 密钥,可能需要在 ~/.ssh/config
文件中指定特定的密钥用于 GitHub:
Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa
非常的有品
以上
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。