quinjet 0.0.14

A fast, live, keyboard-first Git source-control interface for the terminal
# Generated references

Three verbs generate references rather than reading a repository: shell
completion scripts, manual pages, and machine-readable capabilities. All are
generated on demand from the same command definition the parser itself runs. None is installed
automatically, and none needs a repository or `git`, so all work anywhere.

## Commands

- [`quinjet completions`]./completions.md: a completion script for bash,
  zsh, fish, elvish, or PowerShell.
- [`quinjet man`]./man.md: the manual page, or one page per command.
- [`quinjet capabilities`]./capabilities.md: the installed command and argument schema.

## Why they are generated

A completion list and a manual are the two documents that rot fastest, because
nothing breaks when they fall behind. Here they are rendered from the clap
command tree at the moment you ask, so a verb added in `src/cli/mod.rs` is
offered by your shell and documented in `man` without anyone remembering to
update a second file.

```bash
quinjet completions zsh > ~/.zfunc/_quinjet
quinjet man --dir ~/.local/share/man/man1
```

## Installing the output

None of these verbs installs anything itself: each writes to stdout, or to a
directory you name, so you decide where it lands and nothing runs as root
behind your back. The pages linked above give the path for each shell and for
`man` on Linux and macOS.