我在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.
git remote -v 檢查你的origin路徑是否合法。一般來說應該是:
從報錯資訊來看,是找不到xxx這個主機;
確保倉庫地址正確
修改hosts文件,加入host名字和IP的對應關係,或修改.git/config檔案下的origin的url為IP位址
檢查下dns,沒問題的話檢查下你要push到的倉庫裡是否有你目前機器的公鑰。