Documentation

​
​

Development

User Acquisition

Monetization

Industry

Unity Version Control

DevOps

On-prem

Gluon

Editor plug-in

Open Unity Dashboard

Unity Version Control

​
​
Unity Version Control
  • Overview
  • Cloud Repositories organization update
  • Installation
  • Use UVCS with the Unity Editor
  • Unity Version Control plugins
  • Concepts
  • Tutorials
    • Migrate from Git
    • Migrate from Perforce
    • Version Control settings
    • Configure the client
    • Version Control workflow
      • Set up a workspace
      • Create a repository
      • Use a nodata replica
      • Create a branch
      • Modify files
      • View file history
      • Code reviews
      • Code reviews (GUI)
      • Merge changes
    • Version Control tools
  • On-Prem
  • Gluon
  • CLI and shortcut references
  • Release Notes
  1. Unity Version Control (previously Plastic SCM)

Use a nodata replica

Use a nodata replica to create partial clones of large repositories.
Read time 2 minutes
Last updated 10 months ago

Use dehydrated nodata replicas to create low-storage, functional clones of large repositories so you don't need to create a full local clone. Because nodata replicas only contain metadata, they are small and fast to create, even for multi-terabyte repositories.
When an operation requires file content, such as to update your workspace, Unity Version Control (UVCS) retrieves the necessary data on-demand from the source repository. UVCS uses this data for the operation, but doesn’t store it in your local replica.
When you check in new files to a nodata replica, the new data is stored locally within your replica. You can then push these changes back to the main server as with a standard replica.
For more information on partial clones and version control workflows, refer to Workflows and partial replicas.

Create a nodata replica

To create a
nodata
replica, you can use either the UVCS desktop application or the command-line interface (CLI).
To create a nodata replica in the UVCS desktop application, do the following:
  1. In the Branches view, right-click a branch.
  2. Select Push/Pull > Pull this branch.
  3. Select the source repository.
  4. Select the Do not replicate data option.
To create a nodata replica in the CLI, use the
--nodata
flag with the replicate command:
cm pull <source_spec> <destination_spec> --nodata

Hydrate a replica for offline use

The primary limitation of a nodata replica is that it requires a network connection to the source repository to retrieve file data. To work offline, you need to intentionally download the file data you need from the source repository. This process is known as hydrating the replica.
You can use the CLI
pull
command to hydrate a replica:
To download the data for an entire branch:
cm pull hydrate <branch_name>@<repo_spec>
.
To download the data for a specific changeset:
cm pull hydrate --cset=<changeset_id>@<repo_spec>
.

Hydrate the latest changeset

A common and efficient workflow is to download only the data required for your current work, instead of the entire branch history. The process is as follows:
  1. Create a nodata replica of the main repository.
  2. Hydrate only the latest changeset of the branch you want to work on.
  3. Update your workspace to that changeset.
This workflow ensures that your workspace is fully functional for offline work. You have all the necessary data for your current task without the need to download the historical data for the entire repository.

Copyright © 2026 Unity Technologies
LegalPrivacy PolicyCookiesDocumentation Terms of UseDo Not Sell or Share My Personal InformationYour Privacy Choices (Cookie Settings)

"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S and elsewhere (more info here). Other names or brands are trademarks of their respective owners.

Some pages are machine-translated for convenience, and may contain inaccuracies. In the event of conflicting information, the English version is authoritative.

  • On this page
    • Create a nodata replica

    • Hydrate a replica for offline use

    • Hydrate the latest changeset


Report a problem with this page