【已解决】git@github.com: Permission denied (publickey).处理git 无权限访问问题

解决思路

分析

git@github.com: Permission denied (publickey).

fatal: Could not read from remote repository.

意译:权限拒绝(公开密钥),后果:无法读远程仓库。

人话:GitHub设置里面的公钥没有配置或者和本地的私钥不匹配。

处理方案及步骤

1、打开命令提示符

输入如下指令,生成SSH KEY

bash 复制代码
ssh-keygen -t rsa -C "youremail@example.com"

一路确定

2、复制公钥内容

根据公钥地址找到公钥,复制公钥。

3、设置公钥

GitHub个人账户【setting】设置【SSH KEY】

4、clone仓库代码
bash 复制代码
git clone git@github.com:xxx/xxx.git

文章参考:跳转

相关推荐
会讲英语的码农11 分钟前
Git项目管理
gitee·github
油泼辣子多加1 小时前
2024年11月21日Github流行趋势
github
A洛2 小时前
Vercel 设置自动部署 GitHub 项目
github·webhooks·自动部署·vercel
油泼辣子多加3 小时前
2024年11月22日Github流行趋势
github
和你一起去月球6 小时前
TypeScript - 函数(下)
javascript·git·typescript
我不是程序猿儿6 小时前
【GIT】TortoiseGit的变基(Rebase)操作
git
yyycqupt13 小时前
git使用(一)
git
Kkooe17 小时前
GitLab|数据迁移
运维·服务器·git
Beekeeper&&P...17 小时前
git bash是什么,git是什么,git中的暂存区是什么,git中的本地仓库是什么,git中工作目录指的是什么
开发语言·git·bash