--- stage: Create group: Source Code info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://handbook.gitlab.com/handbook/product/ux/technical-writing/#assignments title: Project remote mirrors API --- {{< details >}} - Tier: Free, Premium, Ultimate - Offering: GitLab.com, GitLab Self-Managed, GitLab Dedicated {{< /details >}} [Push mirrors](../user/project/repository/mirror/push.md) defined on a project's repository settings are called remote mirrors. You can query and modify the state of these mirrors with the remote mirror API. For security reasons, the `url` attribute in the API response is always scrubbed of username and password information. {{< alert type="note" >}} [Pull mirrors](../user/project/repository/mirror/pull.md) use [a different API endpoint](project_pull_mirroring.md#configure-pull-mirroring-for-a-project) to display and update them. {{< /alert >}} ## List a project's remote mirrors Returns an array of remote mirrors and their statuses: ```plaintext GET /projects/:id/remote_mirrors ``` Example request: ```shell curl --header "PRIVATE-TOKEN: " \ --url "https://gitlab.example.com/api/v4/projects/42/remote_mirrors" ``` Example response: ```json [ { "enabled": true, "id": 101486, "auth_method": "ssh_public_key", "last_error": null, "last_successful_update_at": "2020-01-06T17:32:02.823Z", "last_update_at": "2020-01-06T17:32:02.823Z", "last_update_started_at": "2020-01-06T17:31:55.864Z", "only_protected_branches": true, "keep_divergent_refs": true, "update_status": "finished", "url": "https://*****:*****@gitlab.com/gitlab-org/security/gitlab.git" } ] ``` ## Get a single project's remote mirror Returns a remote mirror and its statuses: ```plaintext GET /projects/:id/remote_mirrors/:mirror_id ``` Example request: ```shell curl --header "PRIVATE-TOKEN: " \ --url "https://gitlab.example.com/api/v4/projects/42/remote_mirrors/101486" ``` Example response: ```json { "enabled": true, "id": 101486, "last_error": null, "last_successful_update_at": "2020-01-06T17:32:02.823Z", "last_update_at": "2020-01-06T17:32:02.823Z", "last_update_started_at": "2020-01-06T17:31:55.864Z", "only_protected_branches": true, "keep_divergent_refs": true, "update_status": "finished", "url": "https://*****:*****@gitlab.com/gitlab-org/security/gitlab.git" } ``` ## Get a single project's remote mirror public key {{< history >}} - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/180291) in GitLab 17.9. {{< /history >}} Get the public key of a remote mirror that uses SSH authentication. ```plaintext GET /projects/:id/remote_mirrors/:mirror_id/public_key ``` Supported attributes: | Attribute | Type | Required | Description | |:-----------------|:---------------|:---------|:------------| | `id` | integer/string | Yes | ID or [URL-encoded path](rest/_index.md#namespaced-paths) of a top-level group. | | `mirror_id` | integer | Yes | Remote mirror ID. | If successful, returns [`200`](rest/troubleshooting.md#status-codes) and the following response attributes: | Attribute | Type | Description | |:-------------|:---------|:------------| | `public_key` | string | Public key of the remote mirror. | Example request: ```shell curl --header "PRIVATE-TOKEN: " \ --url "https://gitlab.example.com/api/v4/projects/42/remote_mirrors/101486/public_key" ``` Example response: ```json { "public_key": "ssh-rsa AAAAB3NzaC1yc2EA..." } ``` ## Create a pull mirror Learn how to [configure a pull mirror](project_pull_mirroring.md#configure-pull-mirroring-for-a-project) by using the project pull mirroring API. ## Create a push mirror {{< history >}} - [Enabled by default](https://gitlab.com/gitlab-org/gitlab/-/issues/381667) in GitLab 16.0. - [Generally available](https://gitlab.com/gitlab-org/gitlab/-/issues/410354) in GitLab 16.2. Feature flag `mirror_only_branches_match_regex` removed. - Field `auth_method` [introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/75155) in GitLab 16.10. {{< /history >}} Push mirroring is disabled by default. To enable it, include the optional parameter `enabled` when you create the mirror: ```plaintext POST /projects/:id/remote_mirrors ``` | Attribute | Type | Required | Description | | :---------- | :----- | :--------- | :------------ | | `url` | String | yes | The target URL to which the repository is mirrored. | | `enabled` | Boolean | no | Determines if the mirror is enabled. | | `keep_divergent_refs` | Boolean | no | Determines if divergent refs are skipped. | | `only_protected_branches` | Boolean | no | Determines if only protected branches are mirrored. | | `mirror_branch_regex` | String | no | Contains a regular expression. Only branches with names matching the regex are mirrored. Requires `only_protected_branches` to be disabled. Premium and Ultimate only. | | `auth_method` | String | no | Determines the mirror authentication method (`ssh_public_key` or `password`). | Example request: ```shell curl --request POST \ --data "url=https://username:token@example.com/gitlab/example.git" \ --header "PRIVATE-TOKEN: " \ --url "https://gitlab.example.com/api/v4/projects/42/remote_mirrors" ``` Example response: ```json { "enabled": false, "id": 101486, "auth_method": "password", "last_error": null, "last_successful_update_at": null, "last_update_at": null, "last_update_started_at": null, "only_protected_branches": false, "keep_divergent_refs": false, "update_status": "none", "url": "https://*****:*****@example.com/gitlab/example.git" } ``` ## Update a remote mirror's attributes {{< history >}} - Field `auth_method` [introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/75155) in GitLab 16.10. {{< /history >}} Toggle a remote mirror on or off, or change which types of branches are mirrored: ```plaintext PUT /projects/:id/remote_mirrors/:mirror_id ``` | Attribute | Type | Required | Description | | :---------- | :----- | :--------- | :------------ | | `mirror_id` | Integer | yes | The remote mirror ID. | | `enabled` | Boolean | no | Determines if the mirror is enabled. | | `keep_divergent_refs` | Boolean | no | Determines if divergent refs are skipped. | | `only_protected_branches` | Boolean | no | Determines if only protected branches are mirrored. | | `mirror_branch_regex` | String | no | Determines if only the branch whose name matches the regex is mirrored. It does not work with `only_protected_branches` enabled. Premium and Ultimate only. | | `auth_method` | String | no | Determines the mirror authentication method (`ssh_public_key` or `password`). | Example request: ```shell curl --request PUT \ --data "enabled=false" \ --header "PRIVATE-TOKEN: " \ --url "https://gitlab.example.com/api/v4/projects/42/remote_mirrors/101486" ``` Example response: ```json { "enabled": false, "id": 101486, "auth_method": "password", "last_error": null, "last_successful_update_at": "2020-01-06T17:32:02.823Z", "last_update_at": "2020-01-06T17:32:02.823Z", "last_update_started_at": "2020-01-06T17:31:55.864Z", "only_protected_branches": true, "keep_divergent_refs": true, "update_status": "finished", "url": "https://*****:*****@gitlab.com/gitlab-org/security/gitlab.git" } ``` ## Force push mirror update {{< history >}} - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/388907) in GitLab 16.11. {{< /history >}} [Force an update](../user/project/repository/mirror/_index.md#force-an-update) to a push mirror. ```plaintext POST /projects/:id/remote_mirrors/:mirror_id/sync ``` Supported attributes: | Attribute | Type | Required | Description | |-------------|-------------------|----------|--------------------------------------------------------------------------------------| | `id` | integer or string | Yes | The ID or [URL-encoded path of the project](rest/_index.md#namespaced-paths). | | `mirror_id` | Integer | Yes | The remote mirror ID. | If successful, returns [`204`](rest/troubleshooting.md#status-codes). Example request: ```shell curl --request POST \ --header "PRIVATE-TOKEN: " \ --url "https://gitlab.example.com/api/v4/projects/42/remote_mirrors/101486/sync" ``` Example response: An empty response with an HTTP response code 204. ## Delete a remote mirror Delete a remote mirror. ```plaintext DELETE /projects/:id/remote_mirrors/:mirror_id ``` | Attribute | Type | Required | Description | | :---------- | :----- | :--------- |:------------------| | `mirror_id` | Integer | yes | Remote mirror ID. | Example request: ```shell curl --request DELETE \ --header "PRIVATE-TOKEN: " \ --url "https://gitlab.example.com/api/v4/projects/42/remote_mirrors/101486" ```