Repository size
Offering: GitLab.com, GitLab Self-Managed, GitLab Dedicated
The size of a Git repository can significantly impact performance and storage costs. It can differ slightly from one instance to another due to compression, housekeeping, and other factors.
This page explains:
Size calculation
The Project overview page shows the size of all files in the repository, including repository files, artifacts, and LFS. This size is updated every 15 minutes.
The size of a repository is determined by computing the accumulated size of all files in the repository.
This calculation is similar to executing du --summarize --bytes
on your repository’s
hashed storage path.
Size and storage limits
Administrators can set a repository size limit for self-managed instances. For GitLab.com, size limits are pre-defined.
When a project reaches its size limit, certain operations like pushing, creating merge requests, and uploading LFS objects are restricted.
Methods to reduce repository size
The following methods are available to reduce the size of a repository:
- Purge files from history: Remove large files from the entire Git history.
- Clean up repository: Remove internal Git references and unreferenced objects.
- Remove blobs: Permanently delete blobs containing sensitive or confidential information.
Before you reduce your repository size, you should create a full backup of your repository. These methods are irreversible and can potentially affect your project’s history and data.
When you reduce your repository size with any of the available methods, you don’t need to block access to your project. You can perform these operations while your project remains accessible to users. These methods don’t have any known performance implications and don’t cause downtime. However, you should perform these actions during periods of low activity to minimize the potential impact on users.
Purge files from repository history
You can purge files with git filter-repo
to remove large files from Git history. Do not use this method to remove sensitive data like passwords or keys.
Instead use Remove blobs.
This process:
- Modifies the entire Git history.
- Might affect open merge requests.
- Might affect existing pipelines.
- Requires re-cloning of local repositories.
- Does not affect LFS objects.
- Does not specify commit signatures.
- Is irreversible.
Clean up repository
Use this method to remove internal Git references and unreferenced objects from your repository. Do not use this method to remove sensitive data. Instead use Remove blobs.
This process:
- Runs
git gc --prune=30.minutes.ago
to remove unreferenced objects. - Unlinks unused LFS objects, freeing storage space.
- Recalculates repository size on disk.
- Is irreversible.
Prerequisites:
- The list of objects to remove. Use the
git filter-repo
to produce a list of objects in acommit-map
file.
To clean up a repository:
- On the left sidebar, select Search or go to and find your project.
- Go to Settings > Repository.
- Expand Repository maintenance.
-
Upload the list of objects to remove. For example, the
commit-map
file in thefilter-repo
directory.If your
commit-map
file is too large, the background cleanup process might time out and fail. As a result, the repository size isn’t reduced as expected. To address this, split the file and upload it in parts. Start with20000
and reduce as needed. For example:split -l 20000 filter-repo/commit-map filter-repo/commit-map-
- Select Start cleanup.
GitLab sends an email notification with the recalculated repository size after the cleanup completes.
Remove blobs
-
Introduced in GitLab 17.1 with a flag named
rewrite_history_ui
. Disabled by default. - Enabled on GitLab.com in GitLab 17.2.
- Enabled on GitLab Self-Managed and GitLab Dedicated in GitLab 17.3.
-
Generally available in GitLab 17.9. Feature flag
rewrite_history_ui
removed.
A Git binary large object (blob) stores file contents without metadata. Each blob has a unique SHA hash that represents a specific version of a file in the repository.
Use this method to permanently delete blobs that contain sensitive or confidential information.
This process:
- Rewrites Git history.
- Drops commit signatures.
- Might cause open merge requests to fail to merge, requiring a manual rebase.
- Might cause pipelines referencing old commit SHAs to break.
- Might affect historical tags and branches based on old commit history.
- Requires re-cloning of local repositories.
- Is irreversible.
***REMOVED***
, see Redact information.Prerequisites:
- You must have the Owner role for the project
- A list of object IDs to remove.
To remove blobs from your repository:
- On the left sidebar, select Search or go to and find your project.
- Select Settings > Repository.
- Expand Repository maintenance.
- Select Remove blobs.
- Enter a list of blob IDs to remove, each ID on its own line.
- Select Remove blobs.
- On the confirmation dialog, enter your project path.
- Select Yes, remove blobs.
- On the left sidebar, select Settings > General.
- Expand the section labeled Advanced.
- Select Run housekeeping.
Get a list of object IDs
To remove blobs, you need a list of objects to remove.
To get these IDs, use the ls-tree
command or use the Repositories API list repository tree endpoint.
The following instructions use the ls-tree
command.
Prerequisites:
- The repository must be cloned to your local machine.
To get a list of blobs at a given commit or branch sorted by size:
- Open a terminal and go to your repository directory.
-
Run the following command:
git ls-tree -r -t --long --full-name <COMMIT/BRANCH> | sort -nk 4
Example output:
100644 blob 8150ee86f923548d376459b29afecbe8495514e9 133508 doc/howto/img/remote-development-new-workspace-button.png 100644 blob cde4360b3d3ee4f4c04c998d43cfaaf586f09740 214231 doc/howto/img/dependency_proxy_macos_config_new.png 100644 blob 2ad0e839a709e73a6174e78321e87021b20be445 216452 doc/howto/img/gdk-in-gitpod.jpg 100644 blob 115dd03fc0828a9011f012abbc58746f7c587a05 242304 doc/howto/img/gitpod-button-repository.jpg 100644 blob c41ebb321a6a99f68ee6c353dd0ed29f52c1dc80 491158 doc/howto/img/dependency_proxy_macos_config.png
The third column in the output is the object ID of the blob. For example:
8150ee86f923548d376459b29afecbe8495514e9
.
Troubleshooting
Incorrect repository statistics shown in the GUI
If the repository size or commit number displayed in the GitLab interface differs from the
exported .tar.gz
or local repository:
- Ask a GitLab administrator to force an update using the Rails console.
-
The administrator should run the following commands:
p = Project.find_by_full_path('<namespace>/<project>') p.statistics.refresh!
-
To clear project statistics and trigger a recalculation:
p.repository.expire_all_method_caches UpdateProjectStatisticsWorker.perform_async(p.id, ["commit_count","repository_size","storage_size","lfs_objects_size"])
-
To check the total artifact storage space:
builds_with_artifacts = p.builds.with_downloadable_artifacts.all artifact_storage = 0 builds_with_artifacts.find_each do |build| artifact_storage += build.artifacts_size end puts "#{artifact_storage} bytes"
Space not being freed after cleanup
If you’ve completed a repository cleanup process but the storage usage remains unchanged:
- Be aware that unreachable objects remain in the repository for a two-week grace period.
- These objects are not included in exports but still occupy file system space.
- After two weeks, these objects are automatically pruned, which updates storage usage statistics.
- To expedite this process, ask an administrator to run the ‘Prune Unreachable Objects’ housekeeping task.
Repository size limit reached
If you’ve reached the repository size limit:
- Try removing some data and making a new commit.
- If unsuccessful, consider moving some blobs to Git LFS or removing old dependency updates from history.
- If you still can’t push changes, contact your GitLab administrator to temporarily increase the limit for your project.
- As a last resort, create a new project and migrate your data.
git filter-repo
.