git push时出现Permission denied(publickey)的解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git push时出现Permission denied(publickey)的解决相关的知识,希望对你有一定的参考价值。
1 问题描述
push的时候出现上述错误,它说请确保有足够的权限和这个仓库存在,仓库不存在...这个估计不是,所以是权限的问题,准确来说是sshkey的问题.
2 重新生成ssh key
ssh-key -t rsa -b 4096 -C xxxx@xxxxx
这是gitub推荐的生成新ssh key的方法.注意,请不要使用默认的名字,第一个就会提示输入名字,请使用自定义的名字.
3 修改~/.ssh/config
移动公钥和私钥到~/.ssh下.
mv xxx xxx.pub ~/.ssh
修改~/.ssh/config:
vim ~/.ssh/config
输入
Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/name
其中name为上一步的自定义的key名字,是私钥,不是.pub结尾的公钥.
4 添加公钥到github
在github首页中,点击右上角头像进入设置.
选择:
输入名字与公钥的内容,保存.
5 push
成功!
以上是关于git push时出现Permission denied(publickey)的解决的主要内容,如果未能解决你的问题,请参考以下文章
git clone时出现Permission denied (public key)问题解决
运行 git heroku push master 时出现致命错误
本地Git仓库和远程仓库的创建和关联及github上传(git push)时出现error: src refspec master does not match any解决办法