从哪里获取Gitlab中存储库的存储库ID?

我正在使用与Mantis BT集成的
Gitlab

安装并配置了所有必需的插件

在Mantis BT,Repositories – >行动 – >管理,为所需项目点击Update Repository,我们有一个名为Gitlab Repository ID的字段.
对于那个项目.当我提供一些数字并更新它们的存储库时,更改集中的结果会更改,但文件和问题字段值不会更新.

问题:

>如何在gitlab中获取特定项目的存储库ID?
>文件和问题值有什么问题没有改变?
需要任何配置更改?

最佳答案 或者,您也可以尝试使用chrome浏览器中的rest-client(a.k.a arc-client)插件,如下所示:

http://my.git.repo.ip/api/v3/projects/?private_token=<my.private.token.from.gitlab>&url=<my.git.repo.url>

my.git.repo.ip = localhost or whatever the IP/domainName is for you gitlab
server.

my.private.token.from.gitlab = you can get this in gitlab > settings >
accounts > private_token, copy this and use it in the url.

my.git.repo.url = my.git.repo.ip (or, url to your git repo should
work,also note: in the url replace ‘/’ char with ‘%2F’)

得到如下结果:

{
"id": 21
"description": ""
"default_branch": "master"
"tag_list": [0]
"public": true
"archived": false
"visibility_level": 20
...
}
点赞