(git)Warning: Permanently added the ECDSA host key for IP address '212.64.62.174' to the list of known hosts. Permission denied (publickey)

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 "[email protected]"来生成 

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

 用ssh -T [email protected]命令查看成功(github用ssh -T [email protected]查看)

猜你喜欢

转载自www.cnblogs.com/z-ling/p/11830529.html