无法解析主机名http:名称或服务未知

时间:2018-05-24 16:33:04

标签: git

所以我想把我的laravel项目从我的本地机器推到我的数字海洋服务器。

ssh: Could not resolve hostname http: 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登录我的服务器而是使用密码。我做错了什么?

1 个答案:

答案 0 :(得分:2)

检查你的git远程-v网址:它应该是一个ssh,不包含任何https。

通常(如" DigitalOcean: Pushing changes to a remote server"):

git@git.droplet.com:my-project.git
ssh://git@git.domain.tld/repository.git

获得正确的远程URL后,请使用以下命令更改当前的远程URL:

git remote set-url origin ssh://git@git.domain.tld/repository.git