Git error: “Please make sure you have the correct access rights and the repository exists”

后端 未结 27 1016
面向向阳花
面向向阳花 2020-12-12 14:49

I am using TortoiseGit on Windows. When I am trying to Clone from the context menu of the standard Windows Explorer, I get this error:

Please make sur

27条回答
  •  没有蜡笔的小新
    2020-12-12 15:11

    That problem might be having with your ssh-agent, your ssh key hasn't been added with ssh-agent.You have to apply following steps using your terminal:-

    1. $ eval "$(ssh-agent -s)"

      Agent pid 5867

    2. $ ssh-add

      Enter passphrase for /home/you/.ssh/id_rsa: [] Identity added: /home/you/.ssh/id_rsa (/home/you/.ssh/id_rsa)

    then it will work..cheers J.

提交回复
热议问题