2014-03-31 09:43:45 -04:00
|
|
|
# Branches
|
|
|
|
|
|
|
|
## List repository branches
|
|
|
|
|
|
|
|
Get a list of repository branches from a project, sorted by name alphabetically.
|
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/branches
|
|
|
|
```
|
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| --------- | ---- | -------- | ----------- |
|
|
|
|
| `id` | integer | yes | The ID of a project |
|
2014-03-31 09:43:45 -04:00
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
```bash
|
2016-08-08 03:47:17 -04:00
|
|
|
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/projects/5/repository/branches
|
2016-01-18 02:21:01 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
Example response:
|
2014-03-31 09:43:45 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2016-01-18 02:21:01 -05:00
|
|
|
"name": "master",
|
|
|
|
"protected": true,
|
2016-07-12 10:31:55 -04:00
|
|
|
"developers_can_push": false,
|
2016-07-19 04:36:18 -04:00
|
|
|
"developers_can_merge": false,
|
2014-03-31 09:43:45 -04:00
|
|
|
"commit": {
|
2015-02-15 09:01:27 -05:00
|
|
|
"author_email": "john@example.com",
|
|
|
|
"author_name": "John Smith",
|
|
|
|
"authored_date": "2012-06-27T05:51:39-07:00",
|
|
|
|
"committed_date": "2012-06-28T03:44:20-07:00",
|
|
|
|
"committer_email": "john@example.com",
|
|
|
|
"committer_name": "John Smith",
|
2014-03-31 09:43:45 -04:00
|
|
|
"id": "7b5c3cc8be40ee161ae89a06bba6229da1032a0c",
|
|
|
|
"message": "add projects API",
|
2015-02-15 09:01:27 -05:00
|
|
|
"parent_ids": [
|
|
|
|
"4ad91d3c1144c406e50c7b33bae684bd6837faf8"
|
|
|
|
]
|
2016-01-18 02:21:01 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
...
|
2014-03-31 09:43:45 -04:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
## Get single repository branch
|
|
|
|
|
|
|
|
Get a single project repository branch.
|
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/branches/:branch
|
|
|
|
```
|
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| --------- | ---- | -------- | ----------- |
|
|
|
|
| `id` | integer | yes | The ID of a project |
|
|
|
|
| `branch` | string | yes | The name of the branch |
|
2014-03-31 09:43:45 -04:00
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
```bash
|
2016-08-08 03:47:17 -04:00
|
|
|
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/projects/5/repository/branches/master
|
2016-01-18 02:21:01 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
Example response:
|
2014-03-31 09:43:45 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2016-01-18 02:21:01 -05:00
|
|
|
"name": "master",
|
|
|
|
"protected": true,
|
2016-07-12 10:31:55 -04:00
|
|
|
"developers_can_push": false,
|
2016-07-19 04:36:18 -04:00
|
|
|
"developers_can_merge": false,
|
2014-03-31 09:43:45 -04:00
|
|
|
"commit": {
|
2015-02-15 09:01:27 -05:00
|
|
|
"author_email": "john@example.com",
|
|
|
|
"author_name": "John Smith",
|
|
|
|
"authored_date": "2012-06-27T05:51:39-07:00",
|
|
|
|
"committed_date": "2012-06-28T03:44:20-07:00",
|
|
|
|
"committer_email": "john@example.com",
|
|
|
|
"committer_name": "John Smith",
|
2014-03-31 09:43:45 -04:00
|
|
|
"id": "7b5c3cc8be40ee161ae89a06bba6229da1032a0c",
|
|
|
|
"message": "add projects API",
|
2015-02-15 09:01:27 -05:00
|
|
|
"parent_ids": [
|
|
|
|
"4ad91d3c1144c406e50c7b33bae684bd6837faf8"
|
|
|
|
]
|
2016-01-18 02:21:01 -05:00
|
|
|
}
|
2014-03-31 09:43:45 -04:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Protect repository branch
|
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
Protects a single project repository branch. This is an idempotent function,
|
|
|
|
protecting an already protected repository branch still returns a `200 OK`
|
|
|
|
status code.
|
2014-03-31 09:43:45 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
PUT /projects/:id/repository/branches/:branch/protect
|
|
|
|
```
|
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
```bash
|
2016-08-08 03:47:17 -04:00
|
|
|
curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/projects/5/repository/branches/master/protect?developers_can_push=true&developers_can_merge=true
|
2016-01-18 02:21:01 -05:00
|
|
|
```
|
2014-03-31 09:43:45 -04:00
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| --------- | ---- | -------- | ----------- |
|
|
|
|
| `id` | integer | yes | The ID of a project |
|
|
|
|
| `branch` | string | yes | The name of the branch |
|
2016-07-12 10:31:55 -04:00
|
|
|
| `developers_can_push` | boolean | no | Flag if developers can push to the branch |
|
2016-07-19 04:36:18 -04:00
|
|
|
| `developers_can_merge` | boolean | no | Flag if developers can merge to the branch |
|
2016-01-18 02:21:01 -05:00
|
|
|
|
|
|
|
Example response:
|
2014-03-31 09:43:45 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"commit": {
|
2015-02-15 09:01:27 -05:00
|
|
|
"author_email": "john@example.com",
|
|
|
|
"author_name": "John Smith",
|
|
|
|
"authored_date": "2012-06-27T05:51:39-07:00",
|
|
|
|
"committed_date": "2012-06-28T03:44:20-07:00",
|
|
|
|
"committer_email": "john@example.com",
|
|
|
|
"committer_name": "John Smith",
|
2014-03-31 09:43:45 -04:00
|
|
|
"id": "7b5c3cc8be40ee161ae89a06bba6229da1032a0c",
|
|
|
|
"message": "add projects API",
|
2015-02-15 09:01:27 -05:00
|
|
|
"parent_ids": [
|
|
|
|
"4ad91d3c1144c406e50c7b33bae684bd6837faf8"
|
|
|
|
]
|
2014-03-31 09:43:45 -04:00
|
|
|
},
|
2015-02-15 09:01:27 -05:00
|
|
|
"name": "master",
|
2016-07-12 10:31:55 -04:00
|
|
|
"protected": true,
|
2016-07-19 04:36:18 -04:00
|
|
|
"developers_can_push": true,
|
|
|
|
"developers_can_merge": true
|
2014-03-31 09:43:45 -04:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Unprotect repository branch
|
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
Unprotects a single project repository branch. This is an idempotent function,
|
|
|
|
unprotecting an already unprotected repository branch still returns a `200 OK`
|
|
|
|
status code.
|
2014-03-31 09:43:45 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
PUT /projects/:id/repository/branches/:branch/unprotect
|
|
|
|
```
|
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
```bash
|
2016-08-08 03:47:17 -04:00
|
|
|
curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/projects/5/repository/branches/master/unprotect
|
2016-01-18 02:21:01 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| --------- | ---- | -------- | ----------- |
|
|
|
|
| `id` | integer | yes | The ID of a project |
|
|
|
|
| `branch` | string | yes | The name of the branch |
|
2014-03-31 09:43:45 -04:00
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
Example response:
|
2014-03-31 09:43:45 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"commit": {
|
2015-02-15 09:01:27 -05:00
|
|
|
"author_email": "john@example.com",
|
|
|
|
"author_name": "John Smith",
|
|
|
|
"authored_date": "2012-06-27T05:51:39-07:00",
|
|
|
|
"committed_date": "2012-06-28T03:44:20-07:00",
|
|
|
|
"committer_email": "john@example.com",
|
|
|
|
"committer_name": "John Smith",
|
2014-03-31 09:43:45 -04:00
|
|
|
"id": "7b5c3cc8be40ee161ae89a06bba6229da1032a0c",
|
|
|
|
"message": "add projects API",
|
2015-02-15 09:01:27 -05:00
|
|
|
"parent_ids": [
|
|
|
|
"4ad91d3c1144c406e50c7b33bae684bd6837faf8"
|
|
|
|
]
|
2014-03-31 09:43:45 -04:00
|
|
|
},
|
2015-02-15 09:01:27 -05:00
|
|
|
"name": "master",
|
2016-07-12 10:31:55 -04:00
|
|
|
"protected": false,
|
2016-07-19 04:36:18 -04:00
|
|
|
"developers_can_push": false,
|
|
|
|
"developers_can_merge": false
|
2014-03-31 09:43:45 -04:00
|
|
|
}
|
|
|
|
```
|
2014-04-01 03:44:58 -04:00
|
|
|
|
|
|
|
## Create repository branch
|
|
|
|
|
|
|
|
```
|
|
|
|
POST /projects/:id/repository/branches
|
|
|
|
```
|
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| --------- | ---- | -------- | ----------- |
|
|
|
|
| `id` | integer | yes | The ID of a project |
|
|
|
|
| `branch_name` | string | yes | The name of the branch |
|
|
|
|
| `ref` | string | yes | The branch name or commit SHA to create branch from |
|
|
|
|
|
|
|
|
```bash
|
2016-08-08 03:47:17 -04:00
|
|
|
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/repository/branches?branch_name=newbranch&ref=master"
|
2016-01-18 02:21:01 -05:00
|
|
|
```
|
2014-04-01 03:44:58 -04:00
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
Example response:
|
2014-04-01 03:44:58 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2014-04-05 02:36:47 -04:00
|
|
|
"commit": {
|
|
|
|
"author_email": "john@example.com",
|
2015-02-15 09:01:27 -05:00
|
|
|
"author_name": "John Smith",
|
|
|
|
"authored_date": "2012-06-27T05:51:39-07:00",
|
|
|
|
"committed_date": "2012-06-28T03:44:20-07:00",
|
|
|
|
"committer_email": "john@example.com",
|
|
|
|
"committer_name": "John Smith",
|
|
|
|
"id": "7b5c3cc8be40ee161ae89a06bba6229da1032a0c",
|
|
|
|
"message": "add projects API",
|
|
|
|
"parent_ids": [
|
|
|
|
"4ad91d3c1144c406e50c7b33bae684bd6837faf8"
|
|
|
|
]
|
2014-04-05 02:36:47 -04:00
|
|
|
},
|
2016-01-18 02:21:01 -05:00
|
|
|
"name": "newbranch",
|
2016-07-12 10:31:55 -04:00
|
|
|
"protected": false,
|
2016-07-19 04:36:18 -04:00
|
|
|
"developers_can_push": false,
|
|
|
|
"developers_can_merge": false
|
2014-04-01 03:44:58 -04:00
|
|
|
}
|
|
|
|
```
|
2014-05-23 08:34:02 -04:00
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
It returns `200` if it succeeds or `400` if failed with an error message
|
|
|
|
explaining the reason.
|
2014-07-27 10:40:00 -04:00
|
|
|
|
2014-05-23 08:34:02 -04:00
|
|
|
## Delete repository branch
|
|
|
|
|
|
|
|
```
|
|
|
|
DELETE /projects/:id/repository/branches/:branch
|
|
|
|
```
|
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| --------- | ---- | -------- | ----------- |
|
|
|
|
| `id` | integer | yes | The ID of a project |
|
|
|
|
| `branch` | string | yes | The name of the branch |
|
2014-05-23 08:34:02 -04:00
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
It returns `200` if it succeeds, `404` if the branch to be deleted does not exist
|
|
|
|
or `400` for other reasons. In case of an error, an explaining message is provided.
|
2014-05-23 08:34:02 -04:00
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
```bash
|
2016-08-08 03:47:17 -04:00
|
|
|
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/repository/branches/newbranch"
|
2016-01-18 02:21:01 -05:00
|
|
|
```
|
2014-10-30 11:30:09 -04:00
|
|
|
|
2016-01-18 02:21:01 -05:00
|
|
|
Example response:
|
2014-10-30 11:30:09 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2016-01-18 02:21:01 -05:00
|
|
|
"branch_name": "newbranch"
|
2014-10-30 11:30:09 -04:00
|
|
|
}
|
|
|
|
```
|