Project forking workflow

Whenever possible, it’s recommended to work in a common Git repository and use branching strategies to manage your work. However, if you do not have write access for the repository you want to contribute to, you can create a fork.

A fork is a personal copy of the repository and all its branches, which you create in a namespace of your choice. This way you can make changes in your own fork and submit them through a merge request to the repository you don’t have access to.

Creating a fork

Version history

To fork an existing project in GitLab:

  1. On the project’s home page, in the upper right, select Fork: Fork this project
  2. Optional. Edit the Project name.
  3. For Project URL, select the namespace your fork should belong to.
  4. Add a Project slug. This value becomes part of the URL to your fork. It must be unique in the namespace.
  5. Optional. Add a Project description.
  6. Select the Visibility level for your fork. For more information about visibility levels, read Project and group visibility.
  7. Select Fork project.

GitLab creates your fork, and redirects you to the new fork’s page.

Update your fork

To copy the latest changes from the upstream repository into your fork, update it from the command line. GitLab Premium and higher tiers can also configure forks as pull mirrors of the upstream repository.

From the command line

To update your fork from the command line, first ensure that you have configured an upstream remote repository for your fork:

  1. Clone your fork locally, if you have not already done so. For more information, see Clone a repository.
  2. View the remotes configured for your fork with git remote -v.
  3. If your fork does not have an upstream remote pointing to the original repository, use one of these examples to configure an upstream remote:

    # Use this line to set any repository as your upstream after editing <upstream_url>
    git remote add upstream <upstream_url>
    
    # Use this line to set the main GitLab repository as your upstream
    git remote add upstream https://gitlab.com/gitlab-org/gitlab.git
    

    After ensuring your fork has an upstream remote configured, you are ready to update your fork.

  4. In your local copy, ensure you have checked out the default branch, replacing main with the name of your default branch:

    git checkout main
    

    If Git identifies unstaged changes, commit or stash them before continuing.

  5. Fetch the changes to the upstream repository with git fetch upstream.
  6. Pull the changes into your fork, replacing main with the name of the branch you are updating:

    git pull upstream main
    
  7. Push the changes to your fork repository on the server (GitLab.com or self-managed).

    git push origin main
    

With repository mirroring

A fork can be configured as a mirror of the upstream if all these conditions are met:

  1. Your subscription is or a higher tier.
  2. You create all changes in branches (not main).
  3. You do not work on merge requests for confidential issues, which requires changes to main.

Repository mirroring keeps your fork synced with the original repository. This method updates your fork once per hour, with no manual git pull required. For instructions, read Configure pull mirroring.

caution
With mirroring, before approving a merge request, you are asked to sync. You should automate it.

Merging upstream

When you are ready to send your code back to the upstream project, create a merge request. For Source branch, choose your forked project’s branch. For Target branch, choose the original project’s branch.

note
When creating a merge request, if the forked project’s visibility is more restrictive than the parent project (for example the fork is private, the parent is public), the target branch defaults to the forked project’s default branch. This prevents potentially exposing the private code of the forked project.

Selecting branches

Then you can add labels, a milestone, and assign the merge request to someone who can review your changes. Then select Submit merge request to conclude the process. When successfully merged, your changes are added to the repository and branch you’re merging into.

Removing a fork relationship

You can unlink your fork from its upstream project in the advanced settings.