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

后端 未结 27 927
面向向阳花
面向向阳花 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:05

    Like other answers, use https instead of ssh was the solution.

    I post an answer to give a concrete example of a possible solution. I solved this issue with bitbucket when I changed remote url to HTTPS with this command line:

    git remote set-url origin 
    

    After that, I could push the content to the repository with this command:

    git push -u origin --all
    

    And then I could also use Sourcetree

提交回复
热议问题