无法克隆gitlab存储库?

时间:2017-08-23 15:31:43

标签: gitlab

我试图克隆我的gitlab存储库。

这里我提供了项目名称作为回购名称和用户名作为我的用户名。

我试过的命令:

$git clone <copied gitlab repo of https>

当我尝试这样做时,我得到了以下错误。

  

克隆到&#39;项目名称&#39; ...   remote:找不到您要查找的项目。   致命的:存储库&#39; https://gitlab.com/username/project-name.git/&#39;找不到

帮助我某人如何摆脱它。

4 个答案:

答案 0 :(得分:0)

您的网址末尾有斜杠(/)。

改为使用git clone https://gitlab.com/username/project-name.git

答案 1 :(得分:0)

如果有人由于某种原因现在发现了这个问题,最终帮助我的是在gitlab实例网址前面添加了用户名。

git clone https://username@gitlab.com/username/project-name.git

显然这是gitlab中的错误。

答案 2 :(得分:0)

我通过将用户名添加到如下所示的url中来解决了这个问题,

之前:https://gitlab.com/gitlab_user/myrepo.git

之后:https://gitlabusername@gitlab.com/gitlab_user/myrepo.git

答案 3 :(得分:0)

在Windows中,转到凭据管理器并删除:

git:https://gitlab.com

现在,尝试再次克隆项目