CLI & Developer Tools
Lightweight, cross-platform command-line tools designed for modern workflows. Install once, automate deployments, manage environments, and ship faster.
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-inPlugin System
Extend the CLI with community plugins. Add custom deploy targets, secret managers, or monitoring hooks.
Open SourceZero Telemetry
Privacy-first by default. No tracking, no cloud pings. All state and configs stored locally.
PrivacySelf-Updates
Automatic background updates with atomic rollbacks. Never worry about version drift across machines.
Auto-UpdateIDE Extensions
Native integrations for VS Code, Neovim, and JetBrains. Manage environments directly from your editor.
ExtensionsLocal Dev Environments
Spin up isolated, reproducible environments with one command. Docker or standalone runtime supported.
LocalDevCore 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. |