search

Home  >  Q&A  >  body text

github - git push出错,求帮助?

我在win下使用git推送到github遇到了这个问题
请问该怎么解决

$ git push -u origin master
ssh: Could not resolve hostname xxx: 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.
黄舟黄舟2753 days ago513

reply all(2)I'll reply

  • 高洛峰

    高洛峰2017-05-02 09:29:47

    git remote -v checks whether your origin path is legal. Generally speaking it should be:

    ssh://git@<host>:<port>/path_to_source.git 
    

    Judging from the error message, the host xxx cannot be found;

    1. Make sure the warehouse address is correct

    2. Modify the hosts file and add the corresponding relationship between the host name and IP, or modify the origin url under the .git/config file to the IP address

    reply
    0
  • phpcn_u1582

    phpcn_u15822017-05-02 09:29:47

    Check the dns. If there is no problem, check whether the public key of your current machine is in the warehouse you want to push to.

    reply
    0
  • Cancelreply