Installation
Quick Install (Recommended)
Section titled “Quick Install (Recommended)”curl -fsSL https://mine.rwolfe.io/install | bashThis downloads the latest release binary for your OS/arch and installs it to ~/.local/bin/.
Build from Source
Section titled “Build from Source”Requires Go 1.25+.
go install github.com/rnwolfe/mine@latestOr clone and build:
git clone https://github.com/rnwolfe/mine.gitcd minemake buildmake installVerify Installation
Section titled “Verify Installation”mine versionFirst-Time Setup
Section titled “First-Time Setup”After installation, run the guided setup:
mine initThis will:
- Ask for your name (auto-detected from git config)
- Create config at
~/.config/mine/config.toml - Create database at
~/.local/share/mine/mine.db - Detect your shell for completions
Shell Completions
Section titled “Shell Completions”Generate tab completions for your shell:
mine shell completions zsh # for zshmine shell completions bash # for bashmine shell completions fish # for fishFollow the printed instructions to source them.
Uninstall
Section titled “Uninstall”rm -f "$(command -v mine)"rm -rf ~/.config/minerm -rf ~/.local/share/minerm -rf ~/.cache/mine