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.xyz | Sign in the CLI via your browser (recommended). |
| lore login --token-type lore --token <T> --auth-url https://auth.tavern.xyz | Sign 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 status | Show 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 push | Upload commits to tavern. |
| lore sync | Pull the latest changes from the remote. |
Branches #
| lore branch list | List 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.