debian-mirror-gitlab/doc/api/branches.md

224 lines
7.6 KiB
Markdown
Raw Normal View History

2017-09-10 17:25:29 +05:30
# Branches API
2014-09-02 18:07:02 +05:30
2019-03-02 22:35:43 +05:30
This API operates on [repository branches](../user/project/repository/branches/index.md).
TIP: **Tip:**
See also [Protected branches API](protected_branches.md).
2014-09-02 18:07:02 +05:30
## List repository branches
Get a list of repository branches from a project, sorted by name alphabetically.
2019-03-02 22:35:43 +05:30
NOTE: **Note:**
This endpoint can be accessed without authentication if the repository is publicly accessible.
```text
2014-09-02 18:07:02 +05:30
GET /projects/:id/repository/branches
```
2019-03-02 22:35:43 +05:30
Parameters:
2019-05-30 16:15:17 +05:30
| 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 matching the search criteria. |
2019-03-02 22:35:43 +05:30
Example request:
2014-09-02 18:07:02 +05:30
2019-03-02 22:35:43 +05:30
```sh
2019-02-15 15:39:39 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/repository/branches
2016-04-02 18:10:28 +05:30
```
Example response:
2014-09-02 18:07:02 +05:30
```json
[
{
2016-04-02 18:10:28 +05:30
"name": "master",
2017-08-17 22:00:37 +05:30
"merged": false,
2016-04-02 18:10:28 +05:30
"protected": true,
2018-11-20 20:47:30 +05:30
"default": true,
2016-08-24 12:49:21 +05:30
"developers_can_push": false,
"developers_can_merge": false,
2018-11-08 19:23:39 +05:30
"can_push": true,
2014-09-02 18:07:02 +05:30
"commit": {
2015-04-26 12:48:37 +05:30
"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-09-02 18:07:02 +05:30
"id": "7b5c3cc8be40ee161ae89a06bba6229da1032a0c",
2017-08-17 22:00:37 +05:30
"short_id": "7b5c3cc",
"title": "add projects API",
2014-09-02 18:07:02 +05:30
"message": "add projects API",
2015-04-26 12:48:37 +05:30
"parent_ids": [
"4ad91d3c1144c406e50c7b33bae684bd6837faf8"
]
2016-04-02 18:10:28 +05:30
}
},
...
2014-09-02 18:07:02 +05:30
]
```
## Get single repository branch
2019-03-02 22:35:43 +05:30
Get a single project repository branch.
2014-09-02 18:07:02 +05:30
2019-03-02 22:35:43 +05:30
NOTE: **Note:**
This endpoint can be accessed without authentication if the repository is publicly accessible.
```text
2014-09-02 18:07:02 +05:30
GET /projects/:id/repository/branches/:branch
```
2019-03-02 22:35:43 +05:30
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-09-02 18:07:02 +05:30
2019-03-02 22:35:43 +05:30
Example request:
```sh
2019-02-15 15:39:39 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/repository/branches/master
2016-04-02 18:10:28 +05:30
```
Example response:
2014-09-02 18:07:02 +05:30
```json
{
2016-04-02 18:10:28 +05:30
"name": "master",
2017-08-17 22:00:37 +05:30
"merged": false,
2016-04-02 18:10:28 +05:30
"protected": true,
2018-11-20 20:47:30 +05:30
"default": true,
2016-08-24 12:49:21 +05:30
"developers_can_push": false,
"developers_can_merge": false,
2018-11-08 19:23:39 +05:30
"can_push": true,
2014-09-02 18:07:02 +05:30
"commit": {
2015-04-26 12:48:37 +05:30
"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-09-02 18:07:02 +05:30
"id": "7b5c3cc8be40ee161ae89a06bba6229da1032a0c",
2017-08-17 22:00:37 +05:30
"short_id": "7b5c3cc",
"title": "add projects API",
2014-09-02 18:07:02 +05:30
"message": "add projects API",
2015-04-26 12:48:37 +05:30
"parent_ids": [
"4ad91d3c1144c406e50c7b33bae684bd6837faf8"
]
2016-04-02 18:10:28 +05:30
}
2014-09-02 18:07:02 +05:30
}
```
## Protect repository branch
2019-03-02 22:35:43 +05:30
See [`POST /projects/:id/protected_branches`](protected_branches.md#protect-repository-branches) for
information on protecting repository branches.
2014-09-02 18:07:02 +05:30
## Unprotect repository branch
2019-03-02 22:35:43 +05:30
See [`DELETE /projects/:id/protected_branches/:name`](protected_branches.md#unprotect-repository-branches)
for information on unprotecting repository branches.
2017-09-10 17:25:29 +05:30
2019-03-02 22:35:43 +05:30
## Create repository branch
2014-09-02 18:07:02 +05:30
2019-03-02 22:35:43 +05:30
Create a new branch in the repository.
2014-09-02 18:07:02 +05:30
2019-03-02 22:35:43 +05:30
```text
POST /projects/:id/repository/branches
2014-09-02 18:07:02 +05:30
```
2019-03-02 22:35:43 +05:30
Parameters:
2014-09-02 18:07:02 +05:30
2019-03-02 22:35:43 +05:30
| 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-09-02 18:07:02 +05:30
2019-03-02 22:35:43 +05:30
Example request:
2016-04-02 18:10:28 +05:30
2019-03-02 22:35:43 +05:30
```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-04-02 18:10:28 +05:30
```
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
Example response:
2014-09-02 18:07:02 +05:30
```json
{
"commit": {
"author_email": "john@example.com",
2015-04-26 12:48:37 +05:30
"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",
2017-08-17 22:00:37 +05:30
"short_id": "7b5c3cc",
"title": "add projects API",
2015-04-26 12:48:37 +05:30
"message": "add projects API",
"parent_ids": [
"4ad91d3c1144c406e50c7b33bae684bd6837faf8"
]
2014-09-02 18:07:02 +05:30
},
2016-04-02 18:10:28 +05:30
"name": "newbranch",
2017-08-17 22:00:37 +05:30
"merged": false,
2016-08-24 12:49:21 +05:30
"protected": false,
2018-11-20 20:47:30 +05:30
"default": false,
2016-08-24 12:49:21 +05:30
"developers_can_push": false,
2018-11-08 19:23:39 +05:30
"developers_can_merge": false,
"can_push": true
2014-09-02 18:07:02 +05:30
}
```
## Delete repository branch
2019-03-02 22:35:43 +05:30
Delete a branch from the repository.
NOTE: **Note:**
In the case of an error, an explanation message is provided.
```text
2014-09-02 18:07:02 +05:30
DELETE /projects/:id/repository/branches/:branch
```
2019-03-02 22:35:43 +05:30
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-09-02 18:07:02 +05:30
2019-03-02 22:35:43 +05:30
Example request:
2014-09-02 18:07:02 +05:30
2019-03-02 22:35:43 +05:30
```sh
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/repository/branches/newbranch
2016-04-02 18:10:28 +05:30
```
2015-04-26 12:48:37 +05:30
2017-08-17 22:00:37 +05:30
## Delete merged branches
2015-04-26 12:48:37 +05:30
2017-08-17 22:00:37 +05:30
Will delete all branches that are merged into the project's default branch.
2019-03-02 22:35:43 +05:30
NOTE: **Note:**
[Protected branches](../user/project/protected_branches.md) will not be deleted as part of this operation.
2017-09-10 17:25:29 +05:30
2019-03-02 22:35:43 +05:30
```text
2017-08-17 22:00:37 +05:30
DELETE /projects/:id/repository/merged_branches
```
2019-03-02 22:35:43 +05:30
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. |
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
Example request:
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
```sh
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/repository/merged_branches
2015-04-26 12:48:37 +05:30
```