Each snapshot can have a note.md file. note lets you inspect and edit those notes from the CLI.
If <space> is omitted, the current space pointer is used. Snapshot selectors accept full ids, unique prefixes, and @N.
Usage
rinne note [<space>]
List snapshots that have note.md.
rinne note [<space>] <id|@N> show
Print note.md to stdout.
rinne note [<space>] <id|@N> append <text>
Append <text> non-interactively. Use shell here-strings for multi-line input.
rinne note [<space>] <id|@N> overwrite <text>
Overwrite the entire note with <text>.
rinne note [<space>] <id|@N> clear
Clear all content while keeping the file.
Commands
show
Print the note content for the selected snapshot.
append <text>
Append text to the existing note.
overwrite <text>
Replace the entire note with new text.
clear
Clear the file while keeping note.md present.
Examples
List snapshots with note.md in the current space
rinne note Show the latest note in PowerShell
rinne note '@0' show Append one line
rinne note '@0' append "Known issue: shader import pending" Overwrite the latest note
rinne note '@0' overwrite "Release candidate build" Clear a note
rinne note '@0' clear
Notes
- PowerShell users should quote @N selectors, for example rinne note '@0' show.
- For multi-line input in PowerShell, use a here-string exactly as shown in the CLI help.