Next-generation open source version control
Download Lore Β Β·Β Quickstart Β Β·Β Read the docs Β Β·Β Join the conversation
Table of contents
Lore is an open source version control system designed for unprecedented scalability of both data and teams. It is optimized for projects that combine code with large binary assets, including games and entertainment, and caters for the needs of developers and artists alike.
Note
Lore is pre-1.0 and under active development. Interfaces, on-disk formats, and APIs may change between releases.
- Quickstart β install Lore and make your first commit by following the quickstart guide.
- Read the docs β delve into Lore's ethos and architecture in the Lore documentation.
- Have questions? β the FAQ covers licensing, supported platforms, production readiness, and how Lore compares to other version control systems.
- See where Lore is headed β the roadmap lays out the big-rock features by time horizon, from scalable locking to an open source desktop client.
- Join the conversation β chat with us and our community on Discord.
Or try it right now β install Lore and start a local server in demo mode:
macOS / Linux
curl -fsSL https://raw.githubusercontent.com/EpicGames/lore/main/scripts/install.sh | bash -s -- --demoWindows (PowerShell)
$env:LORE_DEMO=1; irm https://raw.githubusercontent.com/EpicGames/lore/main/scripts/install.ps1 | iex- Easy setup, on-demand scalability β Get started in local mode in minutes. Then, scale up as far and as fast as you need.
- Fast and efficient processes β Scale without slowdowns, thanks to shared, reusable data and as-needed downloads.
- Free branching β Quickly and easily create, manage, and sync branches to freely experiment, iterate, and release.
- History you can trust β Confidently track and manage revisions with Lore's verifiable tamper-evident source of truth.
- Intuitive interface β Enjoy complete one-to-one access to the full Lore functionality via the CLI.
- Full-surface API β Extend, customize, and integrate Lore via C/C++, C#, Rust, Go, Python, or JavaScript.
Note
Lore is the built-in version control system for UEFN (Unreal Editor for Fortnite), but today's open source tooling can't yet talk to it: the UEFN build uses a proprietary compression format that can't ship with the open source project. We're actively moving UEFN onto an open compression format β the same one this open source project uses β to eliminate the gap between the two.
Lore is a centralized, content-addressed version control system that represents repository state as Merkle trees and an immutable revision chain, optimized for binary-first storage, deduplication, and sparse/on-demand data hydration at scale. For the full modelβon-disk formats, chunking internals, and the mechanics of the Merkle treeβread the system design doc.
- Content-addressed storage β Repository data is stored and referenced by content hash in a Merkle tree, enabling fast comparisons, integrity checks, and reuse across history and branches.
- Immutable revision chain β A revision's hash signature is derived from its revision state, including parent revision hashes and contained data hashes, forming an immutable chain with cryptographic integrity.
- Chunked storage for large files β Files are stored as reusable chunks with indexed lookup, reducing duplication and enabling efficient updates and transfer for large binary assets.
- On-demand hydration and sparse workspaces β Workspaces can stay lightweight by fetching file data only when needed, so you don't have to download everything up front.
- Centralized service with caching β A service-backed architecture uses caching in front of durable storage to scale throughput for large teams and repositories.
- Lightweight branches and fast switching β Branches are lightweight mutable references, so creating and switching branches is low-overhead without duplication of underlying data.
Lore spans a family of repositories: the core library, server, and CLI in this repository, plus a software development kit (SDK) for each supported language.
| Repository | Description | Link |
|---|---|---|
| Lore Library, Server & CLI | The core Lore library, the Lore Server, and the Lore CLI. You are here. | View on GitHub |
| JavaScript SDK | The JavaScript binding for the Lore API. | View on GitHub |
| Python SDK | The Python binding for the Lore API. | View on GitHub |
| C# SDK | The C# binding for the Lore API. | View on GitHub |
| Go SDK | The Go binding for the Lore API. | View on GitHub |
We believe a truly open ecosystem is built collectively using open standards. Lore is fully open source under an MIT license, and we invite you to build the version control system of the future in the open. See CONTRIBUTING.md to get involved.
Contributions of every kind are welcome β code, documentation, bug reports, and reviews. Start with CONTRIBUTING.md for the development workflow, then read the Code of Conduct and the project governance model. New to the codebase? The good-first-issue label is a good place to start.
Lore is released under the MIT License. See LICENSE for the full text. Copyright (c) 2026 Epic Games, Inc.
- Discord β chat with the team and community on Discord.
- GitHub Issues β report bugs and request features through GitHub Issues.