🍺 tavern Version control for worlds too big for Git DocsSign in

CLI cheatsheet

The commands you'll reach for day to day. Run lore <command> --help for the full reference.

Setup #

lore login grpcs://lore.tavern.xyzSign in the CLI via your browser (recommended).
lore login --token-type lore --token <T> --auth-url https://auth.tavern.xyzSign in with a token from Settings (CI / headless).
lore repository create grpcs://lore.tavern.xyz/<you>/<name>Create a new repository under your account (private by default).
lore clone grpcs://lore.tavern.xyz/<you>/<repo>Clone a repository into a new folder.

Everyday #

lore statusShow what's changed in your working tree.
lore stage --scan .Discover and stage every add / modify / delete.
lore commit "message"Commit the staged changes.
lore pushUpload commits to tavern.
lore syncPull the latest changes from the remote.

Branches #

lore branch listList branches.
lore branch create <name>Create a branch.
lore branch switch <name>Switch the working tree to a branch.
Note lore is the upstream CLI from Epic Games; tavern just hosts the repositories. Command names and flags follow the official lore docs.