overlays status
Check the sync status of local overlay files against the remote API.
Usage
revos overlays status [files...] [-d <dir>] [--columns <cols>] [--json]
Options
| Flag | Description |
|---|---|
[files...] | Specific files to check. If omitted, checks all files in the directory. |
-d, --dir <path> | Directory containing overlay files. Default: ./overlays |
--columns <cols> | Columns to display, e.g. name,status |
--json | Format output as JSON |
Sync Statuses
| Status | Meaning |
|---|---|
| synced | Local and remote are identical |
| modified | Local file has changes not yet pushed |
| new | Local file exists but has no remote counterpart |
| remote-only | Overlay exists on remote but not locally |
| conflict | Both local and remote have changed since last sync |
Examples
Check all overlays:
revos overlays status
Show only name and status columns:
revos overlays status --columns name,status