Changes tab in merge requests (FREE)

The Changes tab on a merge request, below the main merge request details and next to the discussion tab, shows the changes to files between branches or commits. This view of changes to a file is also known as a diff. By default, the diff view compares the file in the merge request branch and the file in the target branch.

The diff view includes the following:

  • The file's name and path.
  • The number of lines added and deleted.
  • Buttons for the following options:
    • Toggle comments for this file; useful for inline reviews.
    • Edit the file in the merge request's branch.
    • Show full file, in case you want to look at the changes in context with the rest of the file.
    • View file at the current commit.
    • Preview the changes with Review Apps.
  • The changed lines, with the specific changes highlighted.

Example screenshot of a source code diff

Merge request diff file navigation

When reviewing changes in the Changes tab, the diff can be navigated using the file tree or file list. As you scroll through large diffs with many changes, you can quickly jump to any changed file using the file tree or file list.

Merge request diff file navigation

Collapsed files in the Changes view

Introduced in GitLab 13.4.

When you review changes in the Changes tab, files with a large number of changes are collapsed to improve performance. When files are collapsed, a warning appears at the top of the changes. Select Expand file on any file to view the changes for that file.

File-by-file diff navigation

For larger merge requests, consider reviewing one file at a time. To enable this feature:

  1. In the top-right corner, select your avatar.
  2. Select Preferences.
  3. Scroll to the Behavior section and select Show one file at a time on merge request's Changes tab.
  4. Select Save changes.

After you enable this setting, GitLab displays only one file at a time in the Changes tab when you review merge requests. You can select Prev and Next to view other changed files.

File-by-file diff navigation

In GitLab 13.7 and later, if you want to change this behavior, you can do so from your User preferences (as explained above) or directly in a merge request:

  1. Go to the merge request's Changes tab.
  2. Select the cog icon ({settings}) to reveal the merge request's settings dropdown.
  3. Select or clear the checkbox Show one file at a time to change the setting accordingly.

This change overrides the choice you made in your user preferences and persists until you clear your browser's cookies or change this behavior again.

Incrementally expand merge request diffs

By default, the diff shows only the parts of a file which are changed. To view more unchanged lines above or below a change select the Expand up or Expand down icons. You can also select Show unchanged lines to expand the entire file.

Incrementally expand merge request diffs

In GitLab versions 13.1 and later, when viewing a merge request's Changes tab, if a certain file was only renamed, you can expand it to see the entire content by selecting Show file contents.

Ignore whitespace changes in Merge Request diff view

Whitespace changes can make it more difficult to see the substantive changes in a merge request. You can choose to hide or show whitespace changes:

  1. Go to your merge request, and select the Changes tab.

  2. Above the list of changed files, select (settings) Preferences to display the preferences menu.

  3. Select or deselect Show whitespace changes:

    MR diff

Mark files as viewed

When reviewing a merge request with many files multiple times, it may be useful to the reviewer to focus on new changes and ignore the files that they have already reviewed and don't want to see anymore unless they are changed again.

To mark a file as viewed:

  1. Go to the merge request's Diffs tab.
  2. On the right-top of the file, locate the Viewed checkbox.
  3. Select it to mark the file as viewed.

Once checked, the file remains marked for that reviewer unless there are newly introduced changes to its content or the checkbox is unchecked.

Show merge request conflicts in diff

This in-development feature might not be available for your use. There can be risks when enabling features still in development. Refer to this feature's version history for more details.

To avoid displaying the changes that are already on target branch in the diff, we compare the merge request's source branch with HEAD of the target branch.

When there are conflicts between the source and target branch, we show the conflicts on the merge request diff as well:

Example of a conflict shown in a merge request diff

Enable or disable merge request conflicts in diff (FREE SELF)

Merge request conflicts in diff is under development and not ready for production use. It is deployed behind a feature flag that is disabled by default. GitLab administrators with access to the GitLab Rails console can enable it.

To enable it:

Feature.enable(:display_merge_conflicts_in_diff)

To disable it:

Feature.disable(:display_merge_conflicts_in_diff)