Gitlab api

获取指定Project数据

curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects?search=test" #只能得到前20条数据
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects?search=test&per_page=100" #得到100条数据
#根据project_id得到project分支的数据
curl --header "PRIVATE-TOKEN:<your_access_token>" "http://gitlab.xxxxxxx.com/api/v4/projects/<project_id>/repository/branches"
#得到指定master分支数据
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/<project_id>/repository/branches/master"
#得到仓库提交列表
#repository:仓库名称
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/<project_id>/repository/commits"

 

posted @ 2025-03-24 13:17  山村放羊娃  阅读(52)  评论(0)    收藏  举报