Git error: “Host Key Verification Failed” when connecting to remote repository

前端 未结 19 1200
迷失自我
迷失自我 2020-11-22 11:40

I am trying to connect to a remote Git repository that resides on my web server and clone it to my machine.

I am using the following format for my command:



        
19条回答
  •  爱一瞬间的悲伤
    2020-11-22 12:28

    This is happening because github is not currently in your known hosts.

    You should be prompted to add github to your known hosts. If this hasn't happened, you can run ssh -T git@github.com to receive the prompt again.

提交回复
热议问题