Snippets (FREE)

With GitLab snippets, you can store and share bits of code and text with other users. You can comment on, clone, and use version control in snippets. They can contain multiple files. They also support syntax highlighting, embedding, downloading, and you can maintain your snippets with the snippets API.

Example of snippet

GitLab provides two types of snippets:

  • Personal snippets: Created independent of any project. You can set a visibility level for your snippet: public, internal, or private.
  • Project snippets: Always related to a specific project. Project snippets can be visible publicly or to only group members.

Create snippets

You can create snippets in multiple ways, depending on whether you want to create a personal or project snippet:

  1. Select the kind of snippet you want to create:
    • To create a personal snippet: On the Snippets dashboard, click New snippet, or:
      • If you're on a project's page, select the plus icon ({plus-square-o}) in the top navigation bar, and then select New snippet from the GitLab (GitLab SaaS) or Your Instance (self-managed) section of the same dropdown menu.
      • For all other pages, select the plus icon ({plus-square-o}) in the top navigation bar, then select New snippet from the dropdown menu.
    • To create a project snippet: Go to your project's page. Select the plus icon ({plus-square-o}), and then select New snippet from the This project section of the dropdown menu.
  2. Add a Title and Description.
  3. Name your File with an appropriate extension, such as example.rb or index.html. Filenames with appropriate extensions display syntax highlighting. Failure to add a filename can cause a known copy-pasting bug. If you don't provide a filename, GitLab creates a name for you.
  4. (Optional) Add multiple files to your snippet.
  5. Select a visibility level, and select Create snippet.

After you create a snippet, you can still add more files to it. In GitLab versions 13.0 and later, snippets are versioned by default.

Discover snippets

To discover all snippets visible to you in GitLab, you can:

  • View all snippets visible to you: In the top navigation bar of your GitLab instance, go to More > Snippets to view your snippets dashboard.
  • Visit GitLab snippets for your snippets on GitLab.com.
  • Explore all public snippets: In the top navigation bar of your GitLab instance, go to More > Snippets and select Explore snippets to view all public snippets.
  • View a project's snippets: In your project, go to Snippets.

Change default visibility of snippets

Project snippets are enabled and available by default. To change their default visibility:

  1. In your project, go to Settings.
  2. Expand the Visibility, project features, permissions section, and scroll to Snippets.
  3. Toggle the default visibility, and select whether snippets can be viewed by everyone, or only project members.
  4. Select Save changes.

Versioned snippets

Introduced in GitLab 13.0.

In GitLab versions 13.0 and later, snippets (both personal and project snippets) have version control enabled by default.

This means that all snippets get their own underlying repository initialized with a default branch at the moment the snippet is created. Whenever a change to the snippet is saved, a new commit to the default branch is recorded. Commit messages are automatically generated. The snippet's repository has only one branch. You can't delete this branch, or create other branches.

Existing snippets were automatically migrated in 13.0. Their current content was saved as the initial commit to the snippets' repository.

Filenames

Snippets support syntax highlighting based on the filename and extension provided for them. While you can submit a snippet without a filename and extension, it needs a valid name so the content can be created as a file in the snippet's repository.

If you don't give a snippet a filename and extension, GitLab adds a filename in the format snippetfile<x>.txt where <x> represents a number added to the file, starting with 1. This number increments if you add more unnamed snippets.

When upgrading from an earlier version of GitLab to 13.0, existing snippets without a supported filename are renamed to a compatible format. For example, if the snippet's filename is http://a-weird-filename.me it is changed to http-a-weird-filename-me to be included in the snippet's repository. As snippets are stored by ID, changing their filenames breaks direct or embedded links to the snippet.

Add or remove multiple files

Introduced in GitLab 13.5.

A single snippet can support up to 10 files, which helps keep related files together, such as:

  • A snippet that includes a script and its output.
  • A snippet that includes HTML, CSS, and JavaScript code.
  • A snippet with a docker-compose.yml file and its associated .env file.
  • A gulpfile.js file and a package.json file, which together can be used to bootstrap a project and manage its dependencies.

If you need more than 10 files for your snippet, we recommend you create a wiki instead. Wikis are available for projects at all subscription levels, and groups for GitLab Premium.

Snippets with multiple files display a file count in the snippet list:

Example of snippet

You can manage snippets with Git (because they're versioned by a Git repository), through the Snippets API, and in the GitLab UI.

To add a new file to your snippet through the GitLab UI:

  1. Go to your snippet in the GitLab UI.
  2. Select Edit in the top right corner.
  3. Select Add another file.
  4. Add your content to the file in the form fields provided.
  5. Select Save changes.

To delete a file from your snippet through the GitLab UI:

  1. Go to your snippet in the GitLab UI.
  2. Select Edit in the top right corner.
  3. Select Delete file alongside the filename of each file you wish to delete.
  4. Select Save changes.

Clone snippets

Instead of copying a snippet to a local file, you may want to clone a snippet to preserve its relationship with the repository, so you can receive or make updates as needed. Select the Clone button on a snippet to display the URLs to clone with SSH or HTTPS:

Clone snippet

You can commit changes to a cloned snippet, and push the changes to GitLab.

Embed snippets

Public snippets can be shared and embedded on any website. You can reuse a GitLab snippet in multiple places, and any change to the source is reflected in the embedded snippets. When embedded, users can download it, or view the snippet in raw format.

To embed a snippet:

  1. Confirm your snippet is publicly visible:

    • If it's a project snippet, the project must be public.
    • The snippet is publicly visible.
    • In Project > Settings > Permissions, the snippets permissions are set to Everyone with access.
  2. In your snippet's Embed section, select Copy to copy a one-line script you can add to any website or blog post. For example:

    <script src="https://gitlab.com/namespace/project/snippets/SNIPPET_ID.js"></script>
  3. Add your script to your file.

Embedded snippets display a header that shows:

  • The filename, if defined.
  • The snippet size.
  • A link to GitLab.
  • The actual snippet content.

For example:

Download snippets

You can download the raw content of a snippet. By default, they download with Linux-style line endings (LF). If you want to preserve the original line endings you need to add a parameter line_ending=raw (For example: https://gitlab.com/snippets/SNIPPET_ID/raw?line_ending=raw). In case a snippet was created using the GitLab web interface the original line ending is Windows-like (CRLF).

Comment on snippets

With snippets, you engage in a conversation about that piece of code, which can encourage user collaboration.

Troubleshooting

Snippet limitations

  • Binary files are not supported.
  • Creating or deleting branches is not supported. Only the default branch is used.
  • Git tags are not supported in snippet repositories.
  • Snippets' repositories are limited to 10 files. Attempting to push more than 10 files results in an error.
  • Revisions are not visible to the user on the GitLab UI, but this feature is planned in future iterations. See the revisions tab issue for updates.
  • The maximum size for a snippet is 50 MB, by default.
  • Git LFS is not supported.

Reduce snippets repository size

Because versioned snippets are considered as part of the namespace storage size, it's recommended to keep snippets' repositories as compact as possible.

For more information about tools to compact repositories, see the documentation on reducing repository size.