1
0
mirror of https://github.com/gfleury/go-bitbucket-v1.git synced 2025-04-05 17:28:05 -05:00

GetHeadCommit on a branch

This commit is contained in:
Hugues Malphettes 2019-12-11 11:14:21 +08:00 committed by George Fleury
parent 5fe08c4852
commit abeaf149e9

@ -14701,7 +14701,7 @@ func (a *DefaultApiService) GetHeadCommit(project, repository, branch string, lo
apibasepath = "/api/1.0" // or "apibasepath": "/api/latest"
}
localVarPath := a.client.cfg.BasePath + apibasepath + "/projects/{projectKey}/repos/{repositorySlug}/commits?at=refs/heads/{branch}&start=0&limit=1"
localVarPath := a.client.cfg.BasePath + apibasepath + "/projects/{projectKey}/repos/{repositorySlug}/commits?until=refs/heads/{branch}&start=0&limit=1"
localVarPath = strings.Replace(localVarPath, "{"+"projectKey"+"}", fmt.Sprintf("%v", project), -1)
localVarPath = strings.Replace(localVarPath, "{"+"repositorySlug"+"}", fmt.Sprintf("%v", repository), -1)
localVarPath = strings.Replace(localVarPath, "{"+"branch"+"}", fmt.Sprintf("%v", branch), -1)