(20210219已解决)git使用中出现Please make sure you have the correct access rights and the repository exists.

  • Overview

    ssh: Could not resolve hostname git_address: Name or service not known
    fatal: Could not read from remote repository.
    
    Please make sure you have the correct access rights
    and the repository exists
    

    出现上述问题是因为本地环境无法通过ssh连接到目标git仓库,本质是ssh层面的问题,需要设置本地可以通过ssh访问远程仓库。

  • 解决方案

    一般git仓库那边会有关于设施SSH Keys的说明。

    将本地ssh生成的公钥id_rsa.pub拷贝到git仓库端。

    如果此步骤做完还是不行,可以确认本地与git仓库端是否可连接。

猜你喜欢

转载自blog.csdn.net/The_Time_Runner/article/details/113914380