This tool automatically generates meaningful commit messages by analyzing your staged changes using Ollama and a local LLM.
- Analyzes git diffs to understand code changes
- Generates concise, descriptive commit messages
- Follows Git commit message best practices (50/72 rule)
- Verifies changes against the actual diff
- Works with any Ollama-compatible model
- Ollama installed on your system
- A code-focused LLM model (recommended:
codellama:34b
)
-
Start Ollama
ollama serve
-
Pull a recommended model
ollama pull codellama:34b
-
Set up the git hook
# Navigate to your git repository cd your-repository # Create the hooks directory if it doesn't exist mkdir -p .git/hooks # Create the prepare-commit-msg file curl -o .git/hooks/prepare-commit-msg https://raw.githubusercontent.com/zyzyva/summarizer/main/summarizer.rb # or copy the summarizer.rb file manually # Make it executable chmod +x .git/hooks/prepare-commit-msg
After installation, the tool works automatically when you commit:
git add .
git commit
The hook will:
- Analyze your staged changes
- Generate a descriptive commit message
- Load it into your editor
- Allow you to review and modify before finalizing
You can specify a different model by setting the OLLAMA_MODEL
environment variable:
OLLAMA_MODEL=codellama:34b git commit
- "Could not connect to Ollama": Ensure Ollama is running with
ollama serve
- Slow responses: Larger models give better results but take longer
- Inaccurate messages: Try a different model or check your diff
MIT