permission denied (publickey) Error using git on windows 7

后端 未结 15 2091
暖寄归人
暖寄归人 2021-01-29 22:35

When I want to push to github with this command

git push origin master

I got this

Permission denied (publickey).
fatal: The rem         


        
15条回答
  •  终归单人心
    2021-01-29 23:08

    I had similar Prob in win 8.

    Very Simple mistake I did: I have already created public key in git hub account so that y keys was not getting match.

    Solution:

    • delete ssh folder and key from github account and do it again the process

    1) ssh-keygen -t rsa -C "your mail address"

    2) ssh -T git@github.com

提交回复
热议问题