2014-02-18 05:41:21 -05:00
# Commits API
## List repository commits
Get a list of repository commits in a project.
2020-02-27 04:09:01 -05:00
```plaintext
2014-02-18 05:41:21 -05:00
GET /projects/:id/repository/commits
```
2016-01-18 02:25:38 -05:00
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-04-08 04:54:00 -04:00
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2019-09-19 17:06:29 -04:00
| `ref_name` | string | no | The name of a repository branch, tag or revision range, or if not given the default branch |
2017-02-20 09:54:37 -05:00
| `since` | string | no | Only commits after or on this date will be returned in ISO 8601 format YYYY-MM-DDTHH:MM:SSZ |
| `until` | string | no | Only commits before or on this date will be returned in ISO 8601 format YYYY-MM-DDTHH:MM:SSZ |
2018-02-19 09:42:00 -05:00
| `path` | string | no | The file path |
| `all` | boolean | no | Retrieve every commit from the repository |
2018-06-06 08:15:35 -04:00
| `with_stats` | boolean | no | Stats about each commit will be added to the response |
2019-09-19 17:06:29 -04:00
| `first_parent` | boolean | no | Follow only the first parent commit upon seeing a merge commit |
2020-02-17 19:09:20 -05:00
| `order` | string | no | List commits in order. Possible values: `default` , [`topo` ](https://git-scm.com/docs/git-log#Documentation/git-log.txt---topo-order ). Defaults to `default` , the commits are shown in reverse chronological order. |
2018-02-19 09:42:00 -05:00
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/5/repository/commits"
2016-01-18 02:25:38 -05:00
```
Example response:
2014-02-18 05:41:21 -05:00
```json
[
{
"id": "ed899a2f4b50b4370feeea94676502b42383c746",
"short_id": "ed899a2f4b5",
"title": "Replace sanitize with escape once",
2020-03-03 22:08:50 -05:00
"author_name": "Example User",
"author_email": "user@example.com",
2016-10-27 09:26:58 -04:00
"authored_date": "2012-09-20T11:50:22+03:00",
2016-11-30 12:02:58 -05:00
"committer_name": "Administrator",
"committer_email": "admin@example.com",
2016-10-27 09:26:58 -04:00
"committed_date": "2012-09-20T11:50:22+03:00",
2014-07-01 15:05:29 -04:00
"created_at": "2012-09-20T11:50:22+03:00",
2015-10-26 02:26:03 -04:00
"message": "Replace sanitize with escape once",
2016-10-27 09:26:58 -04:00
"parent_ids": [
"6104942438c14ec7bd21c6cd5bd995272b3faff6"
2020-03-03 13:08:16 -05:00
],
"web_url": "https://gitlab.example.com/thedude/gitlab-foss/-/commit/ed899a2f4b50b4370feeea94676502b42383c746"
2014-02-18 05:41:21 -05:00
},
{
"id": "6104942438c14ec7bd21c6cd5bd995272b3faff6",
"short_id": "6104942438c",
"title": "Sanitize for network graph",
"author_name": "randx",
2020-03-03 22:08:50 -05:00
"author_email": "user@example.com",
"committer_name": "ExampleName",
"committer_email": "user@example.com",
2014-07-01 15:05:29 -04:00
"created_at": "2012-09-20T09:06:12+03:00",
2015-10-26 02:26:03 -04:00
"message": "Sanitize for network graph",
2016-10-27 09:26:58 -04:00
"parent_ids": [
"ae1d9fb46aa2b07ee9836d49862ec4e2c46fbbba"
2020-03-03 13:08:16 -05:00
],
"web_url": "https://gitlab.example.com/thedude/gitlab-foss/-/commit/ed899a2f4b50b4370feeea94676502b42383c746"
2014-02-18 05:41:21 -05:00
}
]
```
2016-08-29 19:58:32 -04:00
## Create a commit with multiple files and actions
2020-04-21 11:21:10 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/6096) in GitLab 8.13.
2016-08-29 19:58:32 -04:00
Create a commit by posting a JSON payload
2020-02-27 04:09:01 -05:00
```plaintext
2016-08-29 19:58:32 -04:00
POST /projects/:id/repository/commits
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-04-08 04:54:00 -04:00
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) |
2019-06-13 06:44:41 -04:00
| `branch` | string | yes | Name of the branch to commit into. To create a new branch, also provide either `start_branch` or `start_sha` , and optionally `start_project` . |
2016-08-29 19:58:32 -04:00
| `commit_message` | string | yes | Commit message |
2019-06-13 06:44:41 -04:00
| `start_branch` | string | no | Name of the branch to start the new branch from |
| `start_sha` | string | no | SHA of the commit to start the new branch from |
| `start_project` | integer/string | no | The project ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) to start the new branch from. Defaults to the value of `id` . |
2016-08-29 19:58:32 -04:00
| `actions[]` | array | yes | An array of action hashes to commit as a batch. See the next table for what attributes it can take. |
| `author_email` | string | no | Specify the commit author's email address |
| `author_name` | string | no | Specify the commit author's name |
2018-09-27 11:35:15 -04:00
| `stats` | boolean | no | Include commit stats. Default is true |
2019-06-13 06:44:41 -04:00
| `force` | boolean | no | When `true` overwrites the target branch with a new commit based on the `start_branch` or `start_sha` |
2016-08-29 19:58:32 -04:00
| `actions[]` Attribute | Type | Required | Description |
| --------------------- | ---- | -------- | ----------- |
2018-09-23 06:48:29 -04:00
| `action` | string | yes | The action to perform, `create` , `delete` , `move` , `update` , `chmod` |
2016-08-29 19:58:32 -04:00
| `file_path` | string | yes | Full path to the file. Ex. `lib/class.rb` |
2018-09-23 06:48:29 -04:00
| `previous_path` | string | no | Original full path to the file being moved. Ex. `lib/class1.rb` . Only considered for `move` action. |
2018-11-27 11:27:51 -05:00
| `content` | string | no | File content, required for all except `delete` , `chmod` , and `move` . Move actions that do not specify `content` will preserve the existing file content, and any other value of `content` will overwrite the file content. |
2016-08-29 19:58:32 -04:00
| `encoding` | string | no | `text` or `base64` . `text` is default. |
2017-12-20 10:57:27 -05:00
| `last_commit_id` | string | no | Last known file commit id. Will be only considered in update, move and delete actions. |
2018-09-23 06:48:29 -04:00
| `execute_filemode` | boolean | no | When `true/false` enables/disables the execute flag on the file. Only considered for `chmod` action. |
2016-08-29 19:58:32 -04:00
2020-01-30 10:09:15 -05:00
```shell
2016-08-29 19:58:32 -04:00
PAYLOAD=$(cat < < 'JSON'
{
2017-02-02 09:24:30 -05:00
"branch": "master",
2016-08-29 19:58:32 -04:00
"commit_message": "some commit message",
"actions": [
{
"action": "create",
"file_path": "foo/bar",
"content": "some content"
},
{
"action": "delete",
2017-06-13 03:31:13 -04:00
"file_path": "foo/bar2"
2016-08-29 19:58:32 -04:00
},
{
"action": "move",
"file_path": "foo/bar3",
"previous_path": "foo/bar4",
"content": "some content"
},
{
"action": "update",
"file_path": "foo/bar5",
"content": "new content"
2018-09-23 06:48:29 -04:00
},
{
"action": "chmod",
"file_path": "foo/bar5",
"execute_filemode": true
2016-08-29 19:58:32 -04:00
}
]
}
JSON
)
2018-12-27 04:03:08 -05:00
curl --request POST --header "PRIVATE-TOKEN: < your_access_token > " --header "Content-Type: application/json" --data "$PAYLOAD" https://gitlab.example.com/api/v4/projects/1/repository/commits
2016-08-29 19:58:32 -04:00
```
Example response:
2019-04-09 06:47:10 -04:00
2016-08-29 19:58:32 -04:00
```json
{
"id": "ed899a2f4b50b4370feeea94676502b42383c746",
"short_id": "ed899a2f4b5",
"title": "some commit message",
2020-03-03 22:08:50 -05:00
"author_name": "Example User",
"author_email": "user@example.com",
"committer_name": "Example User",
"committer_email": "user@example.com",
2016-08-29 19:58:32 -04:00
"created_at": "2016-09-20T09:26:24.000-07:00",
"message": "some commit message",
"parent_ids": [
"ae1d9fb46aa2b07ee9836d49862ec4e2c46fbbba"
],
"committed_date": "2016-09-20T09:26:24.000-07:00",
"authored_date": "2016-09-20T09:26:24.000-07:00",
"stats": {
"additions": 2,
"deletions": 2,
"total": 4
},
2020-03-03 13:08:16 -05:00
"status": null,
"web_url": "https://gitlab.example.com/thedude/gitlab-foss/-/commit/ed899a2f4b50b4370feeea94676502b42383c746"
2016-08-29 19:58:32 -04:00
}
```
2019-04-07 23:42:03 -04:00
GitLab supports [form encoding ](README.md#encoding-api-parameters-of-array-and-hash-types ). The following is an example using Commit API with form encoding:
2019-03-31 22:45:23 -04:00
2020-01-30 10:09:15 -05:00
```shell
2019-03-31 22:45:23 -04:00
curl --request POST \
--form "branch=master" \
--form "commit_message=some commit message" \
--form "start_branch=master" \
2019-04-09 06:47:10 -04:00
--form "actions[][action]=create" \
--form "actions[][file_path]=foo/bar" \
--form "actions[][content]=< /path/to/local.file" \
--form "actions[][action]=delete" \
--form "actions[][file_path]=foo/bar2" \
--form "actions[][action]=move" \
--form "actions[][file_path]=foo/bar3" \
--form "actions[][previous_path]=foo/bar4" \
--form "actions[][content]=< /path/to/local1.file" \
--form "actions[][action]=update" \
2019-03-31 22:45:23 -04:00
--form "actions[][file_path]=foo/bar5" \
2019-04-09 06:47:10 -04:00
--form "actions[][content]=< /path/to/local2.file" \
--form "actions[][action]=chmod" \
2019-03-31 22:45:23 -04:00
--form "actions[][file_path]=foo/bar5" \
2019-04-09 06:47:10 -04:00
--form "actions[][execute_filemode]=true" \
2019-03-31 22:45:23 -04:00
--header "PRIVATE-TOKEN: < your_access_token > " \
"https://gitlab.example.com/api/v4/projects/1/repository/commits"
```
2014-02-18 05:41:21 -05:00
## Get a single commit
Get a specific commit identified by the commit hash or name of a branch or tag.
2020-02-27 04:09:01 -05:00
```plaintext
2014-02-18 05:41:21 -05:00
GET /projects/:id/repository/commits/:sha
```
Parameters:
2016-01-18 02:25:38 -05:00
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-04-08 04:54:00 -04:00
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2016-01-18 02:25:38 -05:00
| `sha` | string | yes | The commit hash or name of a repository branch or tag |
2018-01-09 06:36:12 -05:00
| `stats` | boolean | no | Include commit stats. Default is true |
2016-01-18 02:25:38 -05:00
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/5/repository/commits/master
2016-01-18 02:25:38 -05:00
```
Example response:
2014-02-18 05:41:21 -05:00
```json
{
"id": "6104942438c14ec7bd21c6cd5bd995272b3faff6",
"short_id": "6104942438c",
"title": "Sanitize for network graph",
"author_name": "randx",
2020-03-03 22:08:50 -05:00
"author_email": "user@example.com",
2016-11-30 12:02:58 -05:00
"committer_name": "Dmitriy",
2020-03-03 22:08:50 -05:00
"committer_email": "user@example.com",
2014-02-18 05:41:21 -05:00
"created_at": "2012-09-20T09:06:12+03:00",
2014-07-01 15:05:29 -04:00
"message": "Sanitize for network graph",
2014-02-18 05:41:21 -05:00
"committed_date": "2012-09-20T09:06:12+03:00",
"authored_date": "2012-09-20T09:06:12+03:00",
2014-04-05 02:36:47 -04:00
"parent_ids": [
"ae1d9fb46aa2b07ee9836d49862ec4e2c46fbbba"
2015-10-06 06:01:16 -04:00
],
2017-08-13 15:15:04 -04:00
"last_pipeline" : {
"id": 8,
"ref": "master",
2019-03-29 10:21:28 -04:00
"sha": "2dc6aa325a317eda67812f05600bdf0fcdc70ab0",
2017-08-13 15:15:04 -04:00
"status": "created"
2019-03-29 10:21:28 -04:00
},
2016-07-27 05:02:49 -04:00
"stats": {
"additions": 15,
"deletions": 10,
"total": 25
},
2020-03-03 13:08:16 -05:00
"status": "running",
"web_url": "https://gitlab.example.com/thedude/gitlab-foss/-/commit/6104942438c14ec7bd21c6cd5bd995272b3faff6"
2014-02-18 05:41:21 -05:00
}
```
2018-02-09 08:41:58 -05:00
## Get references a commit is pushed to
2020-04-21 11:21:10 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/15026) in GitLab 10.6
2018-02-09 08:41:58 -05:00
Get all references (from branches or tags) a commit is pushed to.
2018-02-13 14:22:37 -05:00
The pagination parameters `page` and `per_page` can be used to restrict the list of references.
2018-02-09 08:41:58 -05:00
2020-02-27 04:09:01 -05:00
```plaintext
2018-02-09 08:41:58 -05:00
GET /projects/:id/repository/commits/:sha/refs
```
Parameters:
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
| `sha` | string | yes | The commit hash |
2018-02-13 14:22:37 -05:00
| `type` | string | no | The scope of commits. Possible values `branch` , `tag` , `all` . Default is `all` . |
2018-02-09 08:41:58 -05:00
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/5/repository/commits/5937ac0a7beb003549fc5fd26fc247adbce4a52e/refs?type=all"
2018-02-09 08:41:58 -05:00
```
Example response:
```json
[
2018-02-13 14:22:37 -05:00
{"type": "branch", "name": "'test'"},
{"type": "branch", "name": "add-balsamiq-file"},
{"type": "branch", "name": "wip"},
{"type": "tag", "name": "v1.1.0"}
]
2018-02-09 08:41:58 -05:00
```
2016-12-12 07:04:13 -05:00
## Cherry pick a commit
2020-04-21 11:21:10 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/8047) in GitLab 8.15.
2016-12-12 07:04:13 -05:00
Cherry picks a commit to a given branch.
2020-02-27 04:09:01 -05:00
```plaintext
2016-12-12 07:04:13 -05:00
POST /projects/:id/repository/commits/:sha/cherry_pick
```
Parameters:
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-04-08 04:54:00 -04:00
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2016-12-12 07:04:13 -05:00
| `sha` | string | yes | The commit hash |
| `branch` | string | yes | The name of the branch |
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --request POST --header "PRIVATE-TOKEN: < your_access_token > " --form "branch=master" "https://gitlab.example.com/api/v4/projects/5/repository/commits/master/cherry_pick"
2016-12-12 07:04:13 -05:00
```
Example response:
```json
{
"id": "8b090c1b79a14f2bd9e8a738f717824ff53aebad",
"short_id": "8b090c1b",
"title": "Feature added",
2020-03-03 22:08:50 -05:00
"author_name": "Example User",
"author_email": "user@example.com",
2016-10-27 09:26:58 -04:00
"authored_date": "2016-12-12T20:10:39.000+01:00",
2016-12-12 07:04:13 -05:00
"created_at": "2016-12-12T20:10:39.000+01:00",
"committer_name": "Administrator",
"committer_email": "admin@example.com",
2016-10-27 09:26:58 -04:00
"committed_date": "2016-12-12T20:10:39.000+01:00",
"title": "Feature added",
2020-03-03 22:08:50 -05:00
"message": "Feature added\n\nSigned-off-by: Example User < user @ example . com > \n",
2016-10-27 09:26:58 -04:00
"parent_ids": [
"a738f717824ff53aebad8b090c1b79a14f2bd9e8"
2020-03-03 13:08:16 -05:00
],
"web_url": "https://gitlab.example.com/thedude/gitlab-foss/-/commit/8b090c1b79a14f2bd9e8a738f717824ff53aebad"
2016-12-12 07:04:13 -05:00
}
```
2019-11-13 22:06:25 -05:00
In the event of a failed cherry-pick, the response will provide context about
why:
```json
{
"message": "Sorry, we cannot cherry-pick this commit automatically. This commit may already have been cherry-picked, or a more recent commit may have updated some of its content.",
"error_code": "empty"
}
```
In this case, the cherry-pick failed because the changeset was empty and likely
indicates that the commit already exists in the target branch. The other
possible error code is `conflict` , which indicates that there was a merge
conflict.
2018-11-06 23:27:14 -05:00
## Revert a commit
2020-04-21 11:21:10 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/22919) in GitLab 11.5.
2018-11-06 23:27:14 -05:00
Reverts a commit in a given branch.
2020-02-27 04:09:01 -05:00
```plaintext
2018-11-06 23:27:14 -05:00
POST /projects/:id/repository/commits/:sha/revert
```
Parameters:
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) |
| `sha` | string | yes | Commit SHA to revert |
| `branch` | string | yes | Target branch name |
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --request POST --header "PRIVATE-TOKEN: < your_access_token > " --form "branch=master" "https://gitlab.example.com/api/v4/projects/5/repository/commits/a738f717824ff53aebad8b090c1b79a14f2bd9e8/revert"
2018-11-06 23:27:14 -05:00
```
Example response:
```json
{
"id":"8b090c1b79a14f2bd9e8a738f717824ff53aebad",
"short_id": "8b090c1b",
"title":"Revert \"Feature added\"",
"created_at":"2018-11-08T15:55:26.000Z",
"parent_ids":["a738f717824ff53aebad8b090c1b79a14f2bd9e8"],
"message":"Revert \"Feature added\"\n\nThis reverts commit a738f717824ff53aebad8b090c1b79a14f2bd9e8",
"author_name":"Administrator",
"author_email":"admin@example.com",
"authored_date":"2018-11-08T15:55:26.000Z",
"committer_name":"Administrator",
"committer_email":"admin@example.com",
2020-03-03 13:08:16 -05:00
"committed_date":"2018-11-08T15:55:26.000Z",
"web_url": "https://gitlab.example.com/thedude/gitlab-foss/-/commit/8b090c1b79a14f2bd9e8a738f717824ff53aebad"
2018-11-06 23:27:14 -05:00
}
```
2019-11-13 22:06:25 -05:00
In the event of a failed revert, the response will provide context about why:
```json
{
"message": "Sorry, we cannot revert this commit automatically. This commit may already have been reverted, or a more recent commit may have updated some of its content.",
"error_code": "conflict"
}
```
In this case, the revert failed because the attempted revert generated a merge
conflict. The other possible error code is `empty` , which indicates that the
changeset was empty, likely due to the change having already been reverted.
2014-02-18 05:41:21 -05:00
## Get the diff of a commit
Get the diff of a commit in a project.
2020-02-27 04:09:01 -05:00
```plaintext
2014-02-18 05:41:21 -05:00
GET /projects/:id/repository/commits/:sha/diff
```
Parameters:
2016-01-18 02:25:38 -05:00
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-04-08 04:54:00 -04:00
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2016-01-18 02:25:38 -05:00
| `sha` | string | yes | The commit hash or name of a repository branch or tag |
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/5/repository/commits/master/diff"
2016-01-18 02:25:38 -05:00
```
Example response:
2014-02-18 05:41:21 -05:00
```json
[
{
2017-01-27 15:36:52 -05:00
"diff": "--- a/doc/update/5.4-to-6.0.md\n+++ b/doc/update/5.4-to-6.0.md\n@@ -71,6 +71,8 @@\n sudo -u git -H bundle exec rake migrate_keys RAILS_ENV=production\n sudo -u git -H bundle exec rake migrate_inline_notes RAILS_ENV=production\n \n+sudo -u git -H bundle exec rake gitlab:assets:compile RAILS_ENV=production\n+\n ```\n \n ### 6. Update config files",
2014-02-18 05:41:21 -05:00
"new_path": "doc/update/5.4-to-6.0.md",
"old_path": "doc/update/5.4-to-6.0.md",
"a_mode": null,
"b_mode": "100644",
"new_file": false,
"renamed_file": false,
"deleted_file": false
}
]
```
2014-06-27 10:48:30 -04:00
## Get the comments of a commit
Get the comments of a commit in a project.
2020-02-27 04:09:01 -05:00
```plaintext
2014-06-27 10:48:30 -04:00
GET /projects/:id/repository/commits/:sha/comments
```
Parameters:
2016-01-18 02:25:38 -05:00
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-04-08 04:54:00 -04:00
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2016-01-18 02:25:38 -05:00
| `sha` | string | yes | The commit hash or name of a repository branch or tag |
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/5/repository/commits/master/comments"
2016-01-18 02:25:38 -05:00
```
Example response:
2014-06-27 10:48:30 -04:00
```json
[
{
"note": "this code is really nice",
"author": {
"id": 11,
"username": "admin",
"email": "admin@local.host",
"name": "Administrator",
"state": "active",
"created_at": "2014-03-06T08:17:35.000Z"
}
}
]
```
## Post comment to commit
2016-01-19 05:18:17 -05:00
Adds a comment to a commit.
In order to post a comment in a particular line of a particular file, you must
specify the full commit SHA, the `path` , the `line` and `line_type` should be
`new` .
The comment will be added at the end of the last commit if at least one of the
cases below is valid:
- the `sha` is instead a branch or a tag and the `line` or `path` are invalid
- the `line` number is invalid (does not exist)
- the `path` is invalid (does not exist)
In any of the above cases, the response of `line` , `line_type` and `path` is
set to `null` .
2014-06-27 10:48:30 -04:00
2020-02-27 04:09:01 -05:00
```plaintext
2014-06-27 10:48:30 -04:00
POST /projects/:id/repository/commits/:sha/comments
```
2016-01-18 02:25:38 -05:00
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-04-08 04:54:00 -04:00
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2016-01-19 05:18:17 -05:00
| `sha` | string | yes | The commit SHA or name of a repository branch or tag |
| `note` | string | yes | The text of the comment |
2016-01-18 02:25:38 -05:00
| `path` | string | no | The file path relative to the repository |
2016-01-19 05:18:17 -05:00
| `line` | integer | no | The line number where the comment should be placed |
2016-01-18 02:25:38 -05:00
| `line_type` | string | no | The line type. Takes `new` or `old` as arguments |
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --request POST --header "PRIVATE-TOKEN: < your_access_token > " --form "note=Nice picture man\!" --form "path=dudeism.md" --form "line=11" --form "line_type=new" https://gitlab.example.com/api/v4/projects/17/repository/commits/18f3e63d05582537db6d183d9d557be09e1f90c8/comments
2016-01-18 02:25:38 -05:00
```
2014-06-27 10:48:30 -04:00
2016-01-18 02:25:38 -05:00
Example response:
2014-06-27 10:48:30 -04:00
```json
{
2016-01-19 05:18:17 -05:00
"author" : {
2016-10-13 07:24:09 -04:00
"web_url" : "https://gitlab.example.com/thedude",
2016-01-19 05:18:17 -05:00
"avatar_url" : "https://gitlab.example.com/uploads/user/avatar/28/The-Big-Lebowski-400-400.png",
"username" : "thedude",
"state" : "active",
"name" : "Jeff Lebowski",
"id" : 28
},
"created_at" : "2016-01-19T09:44:55.600Z",
"line_type" : "new",
"path" : "dudeism.md",
"line" : 11,
"note" : "Nice picture man!"
2014-06-27 10:48:30 -04:00
}
```
2015-10-12 06:16:00 -04:00
2016-01-22 04:08:57 -05:00
## Commit status
2016-02-29 06:16:32 -05:00
Since GitLab 8.1, this is the new commit status API.
2016-01-22 04:08:57 -05:00
2018-04-01 16:32:37 -04:00
### List the statuses of a commit
2015-10-12 06:16:00 -04:00
2018-04-01 16:32:37 -04:00
List the statuses of a commit in a project.
The pagination parameters `page` and `per_page` can be used to restrict the list of references.
2015-10-12 06:16:00 -04:00
2020-02-27 04:09:01 -05:00
```plaintext
2015-10-12 06:16:00 -04:00
GET /projects/:id/repository/commits/:sha/statuses
```
2016-01-19 05:18:17 -05:00
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-04-08 04:54:00 -04:00
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2016-01-19 05:18:17 -05:00
| `sha` | string | yes | The commit SHA
2016-06-23 09:07:51 -04:00
| `ref` | string | no | The name of a repository branch or tag or, if not given, the default branch
2016-01-19 05:18:17 -05:00
| `stage` | string | no | Filter by [build stage ](../ci/yaml/README.md#stages ), e.g., `test`
2019-03-25 00:56:57 -04:00
| `name` | string | no | Filter by [job name ](../ci/yaml/README.md#introduction ), e.g., `bundler:audit`
2016-01-19 05:18:17 -05:00
| `all` | boolean | no | Return all statuses, not only the latest ones
2015-10-12 06:16:00 -04:00
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/17/repository/commits/18f3e63d05582537db6d183d9d557be09e1f90c8/statuses
2016-01-19 05:18:17 -05:00
```
Example response:
2015-10-12 06:16:00 -04:00
```json
[
2016-01-19 05:18:17 -05:00
...
{
"status" : "pending",
"created_at" : "2016-01-19T08:40:25.934Z",
"started_at" : null,
"name" : "bundler:audit",
"allow_failure" : true,
"author" : {
"username" : "thedude",
"state" : "active",
2016-10-13 07:24:09 -04:00
"web_url" : "https://gitlab.example.com/thedude",
2016-01-19 05:18:17 -05:00
"avatar_url" : "https://gitlab.example.com/uploads/user/avatar/28/The-Big-Lebowski-400-400.png",
"id" : 28,
"name" : "Jeff Lebowski"
},
"description" : null,
"sha" : "18f3e63d05582537db6d183d9d557be09e1f90c8",
2019-09-18 14:06:14 -04:00
"target_url" : "https://gitlab.example.com/thedude/gitlab-foss/builds/91",
2016-01-19 05:18:17 -05:00
"finished_at" : null,
"id" : 91,
"ref" : "master"
},
{
"started_at" : null,
2018-09-03 09:31:53 -04:00
"name" : "test",
2016-01-19 05:18:17 -05:00
"allow_failure" : false,
"status" : "pending",
"created_at" : "2016-01-19T08:40:25.832Z",
2019-09-18 14:06:14 -04:00
"target_url" : "https://gitlab.example.com/thedude/gitlab-foss/builds/90",
2016-01-19 05:18:17 -05:00
"id" : 90,
"finished_at" : null,
"ref" : "master",
"sha" : "18f3e63d05582537db6d183d9d557be09e1f90c8",
"author" : {
"id" : 28,
"name" : "Jeff Lebowski",
"username" : "thedude",
2016-10-13 07:24:09 -04:00
"web_url" : "https://gitlab.example.com/thedude",
2016-01-19 05:18:17 -05:00
"state" : "active",
"avatar_url" : "https://gitlab.example.com/uploads/user/avatar/28/The-Big-Lebowski-400-400.png"
},
"description" : null
},
...
2015-10-12 06:16:00 -04:00
]
```
2016-01-22 04:08:57 -05:00
### Post the build status to a commit
2015-10-12 06:16:00 -04:00
2016-01-19 05:18:17 -05:00
Adds or updates a build status of a commit.
2015-10-12 06:16:00 -04:00
2020-02-27 04:09:01 -05:00
```plaintext
2015-10-12 06:16:00 -04:00
POST /projects/:id/statuses/:sha
```
2016-01-19 05:18:17 -05:00
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-04-08 04:54:00 -04:00
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2016-01-19 05:18:17 -05:00
| `sha` | string | yes | The commit SHA
| `state` | string | yes | The state of the status. Can be one of the following: `pending` , `running` , `success` , `failed` , `canceled`
| `ref` | string | no | The `ref` (branch or tag) to which the status refers
| `name` or `context` | string | no | The label to differentiate this status from the status of other systems. Default value is `default`
| `target_url` | string | no | The target URL to associate with this status
| `description` | string | no | The short description of the status
2017-02-13 21:28:45 -05:00
| `coverage` | float | no | The total code coverage
2019-07-16 19:36:49 -04:00
| `pipeline_id` | integer | no | The ID of the pipeline to set status. Use in case of several pipeline on same SHA.
2016-01-19 05:18:17 -05:00
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --request POST --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/17/statuses/18f3e63d05582537db6d183d9d557be09e1f90c8?state=success"
2016-01-19 05:18:17 -05:00
```
Example response:
2015-10-12 06:16:00 -04:00
```json
{
2016-01-19 05:18:17 -05:00
"author" : {
2016-10-13 07:24:09 -04:00
"web_url" : "https://gitlab.example.com/thedude",
2016-01-19 05:18:17 -05:00
"name" : "Jeff Lebowski",
"avatar_url" : "https://gitlab.example.com/uploads/user/avatar/28/The-Big-Lebowski-400-400.png",
"username" : "thedude",
"state" : "active",
"id" : 28
},
"name" : "default",
"sha" : "18f3e63d05582537db6d183d9d557be09e1f90c8",
"status" : "success",
2017-02-13 21:28:45 -05:00
"coverage": 100.0,
2016-01-19 05:18:17 -05:00
"description" : null,
"id" : 93,
"target_url" : null,
"ref" : null,
"started_at" : null,
"created_at" : "2016-01-19T09:05:50.355Z",
"allow_failure" : false,
"finished_at" : "2016-01-19T09:05:50.365Z"
2015-10-12 06:16:00 -04:00
}
```
2016-08-29 19:58:32 -04:00
2018-03-26 13:56:53 -04:00
## List Merge Requests associated with a commit
2020-04-21 11:21:10 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/18004) in GitLab 10.7.
2018-04-05 11:46:12 -04:00
2018-03-26 13:56:53 -04:00
Get a list of Merge Requests related to the specified commit.
2020-02-27 04:09:01 -05:00
```plaintext
2018-03-26 13:56:53 -04:00
GET /projects/:id/repository/commits/:sha/merge_requests
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
| `sha` | string | yes | The commit SHA
2020-01-30 10:09:15 -05:00
```shell
2018-12-27 04:03:08 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/5/repository/commits/af5b13261899fb2c0db30abdd0af8b07cb44fdc5/merge_requests"
2018-03-26 13:56:53 -04:00
```
Example response:
```json
[
{
"id":45,
"iid":1,
"project_id":35,
"title":"Add new file",
"description":"",
"state":"opened",
"created_at":"2018-03-26T17:26:30.916Z",
"updated_at":"2018-03-26T17:26:30.916Z",
"target_branch":"master",
"source_branch":"test-branch",
"upvotes":0,
"downvotes":0,
"author" : {
"web_url" : "https://gitlab.example.com/thedude",
"name" : "Jeff Lebowski",
"avatar_url" : "https://gitlab.example.com/uploads/user/avatar/28/The-Big-Lebowski-400-400.png",
"username" : "thedude",
"state" : "active",
"id" : 28
},
"assignee":null,
"source_project_id":35,
"target_project_id":35,
"labels":[ ],
"work_in_progress":false,
"milestone":null,
"merge_when_pipeline_succeeds":false,
"merge_status":"can_be_merged",
"sha":"af5b13261899fb2c0db30abdd0af8b07cb44fdc5",
"merge_commit_sha":null,
2019-11-05 16:07:46 -05:00
"squash_commit_sha":null,
2018-03-26 13:56:53 -04:00
"user_notes_count":0,
"discussion_locked":null,
"should_remove_source_branch":null,
"force_remove_source_branch":false,
"web_url":"http://https://gitlab.example.com/root/test-project/merge_requests/1",
"time_stats":{
"time_estimate":0,
"total_time_spent":0,
"human_time_estimate":null,
"human_total_time_spent":null
}
}
]
```
2019-02-11 03:25:37 -05:00
## Get GPG signature of a commit
Get the [GPG signature from a commit ](../user/project/repository/gpg_signed_commits/index.md ),
if it is signed. For unsigned commits, it results in a 404 response.
2020-02-27 04:09:01 -05:00
```plaintext
2019-02-11 03:25:37 -05:00
GET /projects/:id/repository/commits/:sha/signature
```
Parameters:
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
| `sha` | string | yes | The commit hash or name of a repository branch or tag |
2020-01-30 10:09:15 -05:00
```shell
2019-02-11 03:25:37 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/1/repository/commits/da738facbc19eb2fc2cef57c49be0e6038570352/signature"
```
2020-04-03 14:10:03 -04:00
Example response if commit is GPG signed:
2019-02-11 03:25:37 -05:00
```json
{
2020-04-03 14:10:03 -04:00
"signature_type": "PGP",
"verification_status": "verified",
2019-02-11 03:25:37 -05:00
"gpg_key_id": 1,
"gpg_key_primary_keyid": "8254AAB3FBD54AC9",
"gpg_key_user_name": "John Doe",
"gpg_key_user_email": "johndoe@example.com",
"gpg_key_subkey_id": null
}
```
2020-04-03 14:10:03 -04:00
Example response if commit is x509 signed:
```json
{
"signature_type": "X509",
"verification_status": "unverified",
"x509_certificate": {
"id": 1,
"subject": "CN=gitlab@example.org,OU=Example,O=World",
"subject_key_identifier": "BC:BC:BC:BC:BC:BC:BC:BC:BC:BC:BC:BC:BC:BC:BC:BC:BC:BC:BC:BC",
"email": "gitlab@example.org",
"serial_number": 278969561018901340486471282831158785578,
"certificate_status": "good",
"x509_issuer": {
"id": 1,
"subject": "CN=PKI,OU=Example,O=World",
"subject_key_identifier": "AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB",
"crl_url": "http://example.com/pki.crl"
}
}
}
```
2019-02-11 03:25:37 -05:00
Example response if commit is unsigned:
2019-07-12 04:09:23 -04:00
2019-02-11 03:25:37 -05:00
```json
{
"message": "404 GPG Signature Not Found"
}
```