惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
WordPress大学
WordPress大学
U
Unit 42
I
InfoQ
A
About on SuperTechFans
宝玉的分享
宝玉的分享
J
Java Code Geeks
博客园 - 司徒正美
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
腾讯CDC
Recent Announcements
Recent Announcements

The Register - Special Features

Troops’ phones gave away location data to foreign adversaries Qualcomm picks bad time to pitch a $300 laptop platform AI agents get their own phone directory built atop DNS Carnival confirms ShinyHunters cruised off with 6M customer records after April breach Google engineer accused of turning Year in Search secrets into Polymarket payday Are we human? India's cyber agency sets clock at 12 hours to tackle exploited bugs as AI turns up the heat Broadcom gets early start on WiFi 8 with next-gen wireless routing kit Are we human? Microsoft Excel champ proves he still has the formula Anthropic co-founder hallucinates ghost in the machine Anthropic co-founder hallucinates ghost in the machine NASA plans Moon Base buildout with rovers, drones, cargo landers MyPillow must decide whether to be firm or soft as ransomware crims demand pay Starship shows it can deploy satellites, but Moon mission clock still ticks Huawei's chip law looks less like Moore and more like marketing Experts pour cold borscht on Farage's Russian hack claim Logitech unveils a cushioned mouse for all-day use AI eyes scanning for bugs create a worrisome Linux security trend A Russian speaker and jailbroken Gemini went on a hacking spree and emptied at least one MAGA victim's crypto wallets AI datacenter boom collides with US grid reality Media giant settles for $930k amid user-snooping allegations AT&T sues to ditch Cali copper phone lines to save billions FBI warns of Kali365 as device code phishing soars Techie claims Trump Mobile website was leaking thousands of people's data BOFH: Vibe-coded solutions arrive for problems nobody has Dems slam Trump for making cybersecurity hold out the tin cup while splurging on ballroom and Jan. 6 'slush fund' Google explains how it will infuse ads into AI answers AI is getting pricey, but relief is coming, but not for you Deus ex machina: Half of US Christians trust AI's spiritual advice
Git good with Epic Games
Brandon Vigliarolo · 2026-06-18 · via The Register - Special Features

devops

Got big binaries? Tired of other version control systems that treat them like inferior files? Lore might be worth a look

Fortnite maker and Apple nemesis Epic Games has decided to git good all on its own with the open-source release of its homemade version control system, dubbed Lore.

The project began life as Unreal Revision Control, and was used by internal teams and as the version control system (VCS) built into Unreal Editor for Fortnite. Now, Epic is ready to share its handiwork with the world. 

Lore is a centralized, content-addressed VCS that’s meant to be more flexible for developers, as it's licensed under the less restrictive MIT License instead of the copyleft requirements inherent in the GNU standard. MIT is generally considered more permissive because, unlike GNU, it doesn't require derivatives to be licensed in the same way (e.g., a fork of Lore could be proprietary). 

Lore can be installed on macOS, Windows, and Linux and its server side is designed to be transportable into different cloud services as well. The biggest difference between Lore and other VCS is its equal treatment of text files – e.g., code – and binaries. 

“All content is treated as opaque byte streams on the hot path,” Epic explains in its system design explanation document. “Text-aware features are layered on top, never assumed by the storage or transport paths. Binary content gets the same first-class treatment as text.”

With that in mind, it’s obvious who Epic is targeting with the release: Game developers. 

Lore is purpose-built for projects that use large binary files such as games, Epic said, but that doesn’t preclude other use cases with heavy binary loads, like AI model builders, systems developers, and others who work with large amounts of machine-readable data alongside their own code.

We have lots of VCS data, so why do we need Lore?

There are plenty of VCS options out there: Git, Perforce, Mercurial (and its descendent Sapling) are all mentioned by Epic as alternatives that resemble Lore in its design and use. So, why a new VCS? That’s easy, says the Fortnite studio: None of ‘em do it all. 

Git, says Epic, has great revision graphing, but treats binaries as “second class citizens” and lacks multi-tenant isolation that ensures users on the same infrastructure can't access each others work. Perforce requires multiple server round trips to conduct standard operations, making it too slow. Mercurial and Sapling elegantly solve “the scale of source repositories” via their distributed architecture, but again treat text as king and everything else as second-class data. 

“The motivation is not that prior systems are bad,” Epic explained. “What Lore offers that the prior art does not is the union” of all those features, and some others too.

Key design goals Epic had in mind when designing Lore included the aforementioned binary-first design, a sparse-by-construction architecture that only downloads necessary fragments from the server to clients to ensure fewer round trips, the elimination of partially-applied revisions, in-between states are invisible to readers, and a full-surface API that allows Lore to work with a variety of programming languages. 

If you want to give Lore a spin Epic has published a thorough quickstart guide, and pre-built binaries are available, ironically enough, on GitHub. ®