Quick Start

Get started with GitGuru in 5 minutes.

This guide assumes you have Node.js 16+ and Git already installed on your system.

Step 1: Install GitGuru

bash
npm install -g gitguru

This installs GitGuru globally, making the gg command available everywhere.

Step 2: Get API Key

Visit Google AI Studio and create a free Gemini API key.

Step 3: Configure GitGuru

bash
gg addkey YOUR_GEMINI_API_KEY

Step 4: Verify Installation

bash
gg about

Your First Commands

Ask the AI Assistant

bash
gg ask "how do I create a new branch?"

Generate a Commit Message

bash
git add .
gg commit --ai

Learn Git Concepts

bash
gg explain "What is a rebase?"

Enhanced Status

bash
gg status
Congratulations! You're now ready to use GitGuru. Explore the command documentation to learn more.

Next Steps