2017-05-18 04:49:03 -04:00
# Branches API
2014-03-31 09:43:45 -04:00
2019-01-15 13:31:12 -05:00
This API operates on [repository branches ](../user/project/repository/branches/index.md ).
TIP: **Tip:**
See also [Protected branches API ](protected_branches.md ).
2014-03-31 09:43:45 -04:00
## List repository branches
Get a list of repository branches from a project, sorted by name alphabetically.
2019-01-15 13:31:12 -05:00
NOTE: **Note:**
This endpoint can be accessed without authentication if the repository is publicly accessible.
```text
2014-03-31 09:43:45 -04:00
GET /projects/:id/repository/branches
```
2019-01-15 13:31:12 -05:00
Parameters:
2019-01-27 15:36:23 -05:00
| Attribute | Type | Required | Description |
|:----------|:---------------|:---------|:------------|
| `id` | integer/string | yes | ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user.|
| `search` | string | no | Return list of branches containing the search string. You can use `^term` and `term$` to find branches that begin and end with `term` respectively.|
2019-02-11 07:08:13 -05:00
2019-01-15 13:31:12 -05:00
Example request:
2014-03-31 09:43:45 -04:00
2019-01-15 13:31:12 -05:00
```sh
2018-12-27 04:03:08 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " https://gitlab.example.com/api/v4/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",
2016-11-28 13:16:15 -05:00
"merged": false,
2016-01-18 02:21:01 -05:00
"protected": true,
2018-08-18 07:00:40 -04:00
"default": 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,
2018-06-18 06:02:56 -04:00
"can_push": true,
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",
2016-10-27 09:26:58 -04:00
"short_id": "7b5c3cc",
"title": "add projects API",
2014-03-31 09:43:45 -04:00
"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
2019-01-15 13:31:12 -05:00
Get a single project repository branch.
2014-03-31 09:43:45 -04:00
2019-01-15 13:31:12 -05:00
NOTE: **Note:**
This endpoint can be accessed without authentication if the repository is publicly accessible.
```text
2014-03-31 09:43:45 -04:00
GET /projects/:id/repository/branches/:branch
```
2019-01-15 13:31:12 -05:00
Parameters:
| Attribute | Type | Required | Description |
|:----------|:---------------|:---------|:-------------------------------------------------------------------------------------------------------------|
| `id` | integer/string | yes | ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user. |
| `branch` | string | yes | Name of the branch. |
2014-03-31 09:43:45 -04:00
2019-01-15 13:31:12 -05:00
Example request:
```sh
2018-12-27 04:03:08 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " https://gitlab.example.com/api/v4/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",
2016-11-28 13:16:15 -05:00
"merged": false,
2016-01-18 02:21:01 -05:00
"protected": true,
2018-08-18 07:00:40 -04:00
"default": 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,
2018-06-18 06:02:56 -04:00
"can_push": true,
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",
2016-10-27 09:26:58 -04:00
"short_id": "7b5c3cc",
"title": "add projects API",
2014-03-31 09:43:45 -04:00
"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
2019-01-15 13:31:12 -05:00
See [`POST /projects/:id/protected_branches` ](protected_branches.md#protect-repository-branches ) for
information on protecting repository branches.
2014-03-31 09:43:45 -04:00
## Unprotect repository branch
2019-01-15 13:31:12 -05:00
See [`DELETE /projects/:id/protected_branches/:name` ](protected_branches.md#unprotect-repository-branches )
for information on unprotecting repository branches.
2017-08-02 06:16:17 -04:00
2019-01-15 13:31:12 -05:00
## Create repository branch
2014-03-31 09:43:45 -04:00
2019-01-15 13:31:12 -05:00
Create a new branch in the repository.
2014-03-31 09:43:45 -04:00
2019-01-15 13:31:12 -05:00
```text
POST /projects/:id/repository/branches
2014-03-31 09:43:45 -04:00
```
2014-04-01 03:44:58 -04:00
2019-01-15 13:31:12 -05:00
Parameters:
2014-04-01 03:44:58 -04:00
2019-01-15 13:31:12 -05:00
| Attribute | Type | Required | Description |
|:----------|:--------|:---------|:-------------------------------------------------------------------------------------------------------------|
| `id` | integer | yes | ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user. |
| `branch` | string | yes | Name of the branch. |
| `ref` | string | yes | Branch name or commit SHA to create branch from. |
2014-04-01 03:44:58 -04:00
2019-01-15 13:31:12 -05:00
Example request:
2016-01-18 02:21:01 -05:00
2019-01-15 13:31:12 -05:00
```sh
curl --request POST --header "PRIVATE-TOKEN: < your_access_token > " https://gitlab.example.com/api/v4/projects/5/repository/branches?branch=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",
2016-10-27 09:26:58 -04:00
"short_id": "7b5c3cc",
"title": "add projects API",
2015-02-15 09:01:27 -05:00
"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-11-28 13:16:15 -05:00
"merged": false,
2016-07-12 10:31:55 -04:00
"protected": false,
2018-08-18 07:00:40 -04:00
"default": false,
2016-07-19 04:36:18 -04:00
"developers_can_push": false,
2018-06-18 06:02:56 -04:00
"developers_can_merge": false,
"can_push": true
2014-04-01 03:44:58 -04:00
}
```
2014-05-23 08:34:02 -04:00
## Delete repository branch
2019-01-15 13:31:12 -05:00
Delete a branch from the repository.
NOTE: **Note:**
In the case of an error, an explanation message is provided.
```text
2014-05-23 08:34:02 -04:00
DELETE /projects/:id/repository/branches/:branch
```
2019-01-15 13:31:12 -05:00
Parameters:
| Attribute | Type | Required | Description |
|:----------|:---------------|:---------|:-------------------------------------------------------------------------------------------------------------|
| `id` | integer/string | yes | ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user. |
| `branch` | string | yes | Name of the branch. |
2014-05-23 08:34:02 -04:00
2019-01-15 13:31:12 -05:00
Example request:
2014-05-23 08:34:02 -04:00
2019-01-15 13:31:12 -05:00
```sh
curl --request DELETE --header "PRIVATE-TOKEN: < your_access_token > " https://gitlab.example.com/api/v4/projects/5/repository/branches/newbranch
2016-01-18 02:21:01 -05:00
```
2014-10-30 11:30:09 -04:00
2016-09-21 10:15:12 -04:00
## Delete merged branches
Will delete all branches that are merged into the project's default branch.
2019-01-15 13:31:12 -05:00
NOTE: **Note:**
[Protected branches ](../user/project/protected_branches.md ) will not be deleted as part of this operation.
2017-06-08 06:37:35 -04:00
2019-01-15 13:31:12 -05:00
```text
2016-09-21 10:15:12 -04:00
DELETE /projects/:id/repository/merged_branches
```
2019-01-15 13:31:12 -05:00
Parameters:
| Attribute | Type | Required | Description |
|:----------|:---------------|:---------|:-------------------------------------------------------------------------------------------------------------|
| `id` | integer/string | yes | ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user. |
2016-09-21 10:15:12 -04:00
2019-01-15 13:31:12 -05:00
Example request:
2016-09-21 10:15:12 -04:00
2019-01-15 13:31:12 -05:00
```sh
curl --request DELETE --header "PRIVATE-TOKEN: < your_access_token > " https://gitlab.example.com/api/v4/projects/5/repository/merged_branches
2016-09-21 10:15:12 -04:00
```