1
기본적으로 api "GET/projects/: id/repository/commit" 은 master 브랜치의 커밋을 가져오고, 다른 브랜치 커밋을 받고 싶습니다.gitlab api가 특정 분기의 모든 커밋을 가져올 수 있습니까?
기본적으로 api "GET/projects/: id/repository/commit" 은 master 브랜치의 커밋을 가져오고, 다른 브랜치 커밋을 받고 싶습니다.gitlab api가 특정 분기의 모든 커밋을 가져올 수 있습니까?
Gitlab docs에 따르면 당신은 매개 변수 "ref_name"를 추가하고 커밋 취득하는 지점을 지정할 수 있습니다
GET /projects/:id/repository/commits?ref_name=my_branch_name
그것은 설명서를 말한다 : https://docs.gitlab.com/를 ee/api/commits.html # list-repository-commits –
Oliver의 링크에있는 'ref_name' 속성을 확인하십시오. – Jawad
감사합니다! 나는 해결했다. –