Get up and running in seconds

brew tap gitdev/tools && brew install git-cli

Requires Homebrew 3.6+. Adds shell completion for Zsh & Bash automatically.

curl -sSL https://git.dev/install.sh | bash -s -- -y

Works on Ubuntu, Debian, Fedora, Arch. Installs to /usr/local/bin with sudo.

winget install GitDev.git-cli
# or via Chocolatey:
choco install git-cli

Compatible with PowerShell 7+ and CMD. Adds autocomplete via PSReadLine.

curl -LO https://git.dev/releases/v2.4.1/git-cli-x86_64.tar.gz
tar -xzf git-cli-x86_64.tar.gz
sudo mv git /usr/local/bin/

Static binaries for x86_64 & ARM64. No dependencies required.

Built for your workflow

⌨️

Smart Autocomplete

Context-aware command and flag suggestions powered by your project structure and history. Works out of the box.

Built-in
🧩

Plugin System

Extend the CLI with community plugins. Add custom deploy targets, secret managers, or monitoring hooks.

Open Source
🛡️

Zero Telemetry

Privacy-first by default. No tracking, no cloud pings. All state and configs stored locally.

Privacy
🔄

Self-Updates

Automatic background updates with atomic rollbacks. Never worry about version drift across machines.

Auto-Update
🖥️

IDE Extensions

Native integrations for VS Code, Neovim, and JetBrains. Manage environments directly from your editor.

Extensions
📦

Local Dev Environments

Spin up isolated, reproducible environments with one command. Docker or standalone runtime supported.

LocalDev
\n

Core Commands

Command Description
git init Initialize a new project with best-practice defaults and CI templates.
git deploy [env] Build and push to staging or production with automatic preview URLs.
git env ls List all configured environments and their current status.
git secret set KEY Encrypt and store secrets in your workspace vault (AES-256).
git logs --format=compact Streamline commit history with filtered noise and dependency updates hidden.
git doctor Diagnose local toolchain issues, path conflicts, and version mismatches.

See it in action

~ workspace/my-app
$ git deploy --prod
→ Detected Next.js 14 + Tailwind config
→ Building production bundle...
✓ Deployed to https://my-app.git.dev
✓ Rollback token generated (expires in 24h)
$
Full Documentation Install .git CLI →