其他分享
首页 > 其他分享> > (git)Warning: Permanently added the ECDSA host key for IP address '212.64.62.174' to the l

(git)Warning: Permanently added the ECDSA host key for IP address '212.64.62.174' to the l

作者:互联网

git上传代码,输入git push -u origin master后报错

Warning: Permanently added the ECDSA host key for IP address '212.64.62.174' to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights

输入git config receive.denyCurrentBranch ignore后  git push -u origin master出现

Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists

 

用命令cd ~/.ssh 和ls查看

PS E:\Angular-test-demo\dist> cd ~/.ssh
PS C:\Users\zx\.ssh> ls

 

不存在,ssh-keygen -t rsa -C "youremail@example.com"来生成 

若存在‘去C:\Users\Administrator\.ssh中找到公钥复制后去码云中配置完就好了

 

 用ssh -T git@gitee.com命令查看成功(github用ssh -T git@github.com查看)

 

 

 

 

 

标签:git,repository,Permission,publickey,Warning,ssh,denied
来源: https://www.cnblogs.com/z-ling/p/11830529.html