我只想保存一个gitlab项目的项目ID,并通过它链接到它。期望项目名称和名称空间将更改。有没有一种方法可以仅通过其ID链接到gitlab项目,并让gitlab自动重定向到正确的网址?
答案 0 :(得分:3)
根据this closed issue,您现在可以通过https://gitlab.com/projects/:id仅使用项目ID访问项目。
https://gitlab.com/projects/13083重定向到https://gitlab.com/gitlab-org/gitlab-ce
$ curl -v 'https://gitlab.com/projects/13083'
< HTTP/1.1 302 Found
< Location: https://gitlab.com/gitlab-org/gitlab-ce
我删除了很多curl
输出,但留下了有趣的部分
VonC指出,this change已包含在GitLab 11.8
中