无法克隆gitlab存储库

时间:2017-07-10 02:39:48

标签: gitlab

我无法从gitlab克隆私人仓库。得到以下错误

git clone ssh://git@localhost:10022/vnyapathi/test.git
Cloning into 'test'...
ssh: connect to host localhost port 10022: Connection refused
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

2 个答案:

答案 0 :(得分:0)

这意味着您的公共ssh密钥不是properly registered to your GitLab server(如果在本地安装),或者您需要将daily_attendances替换为其实际地址:
检查输出:

INSERT INTO daily_attendances (emp_id, date, in_time, out_time)
SELECT emp_id, date, MAX(in_time), MAX(out_time)
FROM temp
GROUP BY emp_id, date

它应该返回“欢迎使用GitLab”消息。

如果是,请检查项目所有者是否是具有适当访问级别的user of the project

答案 1 :(得分:0)

您的网址出现了问题。你能再次检查远程gitlab repo url吗?

格式应为

git@gitlab.com:<username>/<remote-repo>.git

您还可以参考here中的更多克隆指南。