Migrate groups and projects by using direct transfer

Tier: Free, Premium, Ultimate Offering: GitLab.com, Self-managed, GitLab Dedicated

To migrate GitLab groups and projects by using direct transfer, you:

  1. Fulfill the prerequisites.
  2. Connect the source GitLab instance.
  3. Select groups and projects to migrate and begin the migration.
  4. Review the results of the import.

If there are any problems, you can:

  1. Cancel or retry the migration.
  2. Check the troubleshooting information.

Prerequisites

History
  • Requirement for Maintainer role instead of Developer role introduced in GitLab 16.0 and backported to GitLab 15.11.1 and GitLab 15.10.5.

Before migrating by using direct transfer, see the following prerequisites.

Network

  • The network connection between instances or GitLab.com must support HTTPS.
  • Firewalls must not block the connection between the source and destination GitLab instances.

Versions

To maximize the chance of a successful and performant migration, you should:

  • To take advantage of batched exports and imports of relations, update the source and destination instances to GitLab 16.8 or later.
  • Migrate between versions that are as new as possible. Update the source and destination instances to as late a version as possible to take advantage of bug fixes and improvements added over time.

We have successfully tested migrations between a source instance running GitLab 16.2 and a destination instance running GitLab 16.8.

Configuration

  • Both GitLab instances must have group migration by direct transfer enabled in application settings by an instance administrator.
  • You must have a personal access token for the source GitLab instance:
    • For GitLab 15.1 and later source instances, the personal access token must have the api scope.
    • For GitLab 15.0 and earlier source instances, the personal access token must have both the api and read_repository scopes.
  • You must have the Owner role on the source group to migrate from.
  • You must have a role in the destination namespace that enables you to create a subgroup in that namespace.
  • To import items stored in object storage, you must either:
    • Configure proxy_download.
    • Ensure that the destination GitLab instance has access to the object storage of the source GitLab instance.
  • You cannot import groups with projects when the source instance or group has Default project creation protection set to No one. If required, this setting can be changed:

User accounts

To ensure GitLab maps users and their contributions correctly:

  1. Create the required users on the destination GitLab instance. You can create users with the API only on self-managed instances because it requires administrator access. When migrating to GitLab.com or a self-managed GitLab instance you can:
  2. Ensure that users have a public email on the source GitLab instance that matches any confirmed email address on the destination GitLab instance. Most users receive an email asking them to confirm their email address.
  3. If users already exist on the destination instance and you use SAML SSO for GitLab.com groups, all users must link their SAML identity to their GitLab.com account.

There is no way in the GitLab UI or API to automatically set public email addresses for users. If you need to set a lot of user accounts to have public email addresses, see issue 284495 for a potential workaround.

Connect the source GitLab instance

Create the group you want to import to and connect the source GitLab instance:

  1. Create either:
    • A new group. On the left sidebar, at the top, select Create new () and New group. Then select Import group.
    • A new subgroup. On existing group’s page, either:
      • Select New subgroup.
      • On the left sidebar, at the top, select Create new () and New subgroup. Then select the import an existing group link.
  2. Enter the base URL of a GitLab instance.
  3. Enter the personal access token for your source GitLab instance.
  4. Select Connect instance.

Select the groups and projects to import

History
  • Introduced in GitLab 15.8, option to import groups with or without projects.

After you have authorized access to the source GitLab instance, you are redirected to the GitLab group importer page. Here you can see a list of the top-level groups on the connected source instance where you have the Owner role.

  1. By default, the proposed group namespaces match the names as they exist in source instance, but based on your permissions, you can choose to edit these names before you proceed to import any of them. Group and project paths must conform to naming limitations and are normalized if necessary to avoid import failures.
  2. Next to the groups you want to import, select either:
    • Import with projects. If this is not available, see prerequisites.
    • Import without projects.
  3. The Status column shows the import status of each group. If you leave the page open, it updates in real-time.
  4. After a group has been imported, select its GitLab path to open its GitLab URL.
caution
Importing groups with projects is in beta. This feature is not ready for production use.

Group import history

History
  • Partially completed status introduced in GitLab 16.7.

You can view all groups migrated by you by direct transfer listed on the group import history page. This list includes:

  • Paths of source groups.
  • Paths of destination groups.
  • Start date of each import.
  • Status of each import.
  • Error details if any errors occurred.

To view group import history:

  1. Sign in to GitLab.
  2. On the left sidebar, at the top, select Create new () and New group.
  3. Select Import group.
  4. In the upper-right corner, select History.
  5. If there are any errors for a particular import, select Show errors to see their details.

Review results of the import

History
  • Introduced in GitLab 16.6 with a flag named bulk_import_details_page. Enabled by default.
  • Feature flag bulk_import_details_page removed in GitLab 16.8.
  • Details for partially completed and completed imports added in GitLab 16.9.
  • Introduced in GitLab 17.0, an Imported badge to indicate that designs, epics, issues, merge requests, notes (system notes and comments), snippets, and user profile activity were imported.

To review the results of an import:

  1. Go to the Group import history page.
  2. To see the details of a failed import, select the Show errors link on any import with a Failed or Partially completed status.
  3. If the import has a Partially completed or Complete status, to see which items were and were not imported, select View details.

You can also see that an item was imported when you see an Imported badge on some items in the GitLab UI.

Cancel a running migration

If required, you can cancel a running migration by using either the REST API or a Rails console.

Cancel with the REST API

For information on cancelling a running migration with the REST API, see Cancel a migration.

Cancel with a Rails console

To cancel a running migration with a Rails console:

  1. Start a Rails console session on the destination GitLab instance.
  2. Find the last import by running the following command. Replace USER_ID with the user ID of the user that started the import:

    bulk_import = BulkImport.where(user_id: USER_ID).last
    
  3. Cause the import and all items associated with it to fail by running the following command:

    bulk_import.entities.each do |entity|
      entity.trackers.each do |tracker|
        tracker.batches.each(&:fail_op!)
      end
      entity.trackers.each(&:fail_op!)
      entity.fail_op!
    end
    bulk_import.fail_op!
    

Cancelling a bulk_import doesn’t stop workers that are exporting the project on the source instance, but prevents the destination instance from:

  • Asking the source instance for more projects to be exported.
  • Making other API calls to the source instance for various checks and information.

Retry failed or partially successful migrations

If your migrations fail, or partially succeed but are missing items, you can retry the migration. To retry a migration of a:

  • Top-level group and all of its subgroups and projects, use either the GitLab UI or the GitLab REST API.
  • Specific subgroups or projects, use the GitLab REST API.