commit-msg

commit-msg is a command-line tool that generates commit messages using LLM (Large Language Models). It is designed to help developers create clear and concise commit messages for their Git repositories automatically by analyzing your staged changes.
Screenshot
Below is a sample execution of commit-msg:

Before running the application, set LLM and API Key using "commit llm setup"
π Hacktoberfest 2025
This project is participating in Hacktoberfest 2025! We welcome contributions from developers of all skill levels.
Looking to contribute? Check out:
Features
β¨ AI-Powered Commit Messages - Automatically generate meaningful commit messages
π Multiple LLM Support - Choose between Google Gemini, Grok, Claude, ChatGPT, or Ollama (local)
π Context-Aware - Analyzes staged and unstaged changes
π Auto-Copy to Clipboard - Generated messages are automatically copied for instant use
ποΈ Interactive Review Flow - Accept, regenerate with new styles, or open the message in your editor before committing
π File Statistics Display - Visual preview of changed files and line counts
οΏ½ Smart Security Scrubbing - Automatically removes API keys, passwords, and sensitive data from diffs
οΏ½π Easy to Use - Simple CLI interface with beautiful terminal UI
β‘ Fast - Quick generation of commit messages
Supported LLM Providers
You can use Google Gemini, Grok, Claude, ChatGPT, or Ollama (local) as the LLM to generate commit messages:
π Security & Privacy
commit-msg automatically scrubs sensitive data from your code before sending it to LLM providers:
- API Keys & Tokens - OpenAI, Gemini, Claude, GitHub, Slack, AWS credentials
- Passwords & Secrets - Database passwords, JWT tokens, private keys
- Personal Data - Email addresses, credit card numbers
- Environment Variables - Automatic detection and redaction of sensitive
.env files
All scrubbing happens locally before any data leaves your machine, ensuring your secrets stay secure.
π¦ Installation
Option 1: Download Pre-built Binary (Recommended)
-
Download the latest release from the GitHub Releases page
-
Extract the executable to a directory
-
Add the directory to your system PATH:
Windows:
setx PATH "%PATH%;C:\path\to\commit-msg"
Linux/macOS:
export PATH=$PATH:/path/to/commit-msg
echo 'export PATH=$PATH:/path/to/commit-msg' >> ~/.bashrc # or ~/.zshrc
Option 2: Build from Source
Requirements: Go 1.23.4 or higher
# Clone the repository
git clone https://github.com/dfanso/commit-msg.git
cd commit-msg
# Install dependencies
go mod download
# Build the executable
go build -o commit cmd/commit-msg/main.go
# (Optional) Install to GOPATH
go install
π Usage
Basic Usage
Navigate to any Git repository and run:
commit .
Or if running from source:
go run cmd/commit-msg/main.go .
Setup LLM and API Key
commit llm setup
Update LLM
commit llm update
Example Workflow
# Make changes to your code
echo "console.log('Hello World')" > app.js
# Stage your changes
git add .
# Generate commit message
commit .
# The tool will display:
# - File statistics (staged, unstaged, untracked)
# - Generated commit message in a styled box
# - Automatically copy to clipboard
# Output: "feat: add hello world console log to app.js"
# You can now paste it with Ctrl+V (or Cmd+V on macOS)
Interactive Commit Workflow
Once the commit message is generated, the CLI now offers a quick review loop:
- Accept & copy β use the message as-is (it still lands on your clipboard automatically)
- Regenerate β pick from presets like detailed summaries, casual tone, bug-fix emphasis, or provide custom instructions for the LLM
- Edit in your editor β open the message in
$GIT_EDITOR, $VISUAL, $EDITOR, or a sensible fallback (notepad on Windows, nano elsewhere)
- Exit β leave without copying anything if the message isn't ready yet
This makes it easy to tweak the tone, iterate on suggestions, or fine-tune the final wording before you commit.
Use Cases
- π Generate commit messages for staged changes
- π Analyze both staged and unstaged changes
- π Get context from recent commits and file statistics
- β
Create conventional commit messages
- π Auto-copy to clipboard for immediate use
- π¨ Beautiful terminal UI with file statistics and previews
π§ Configuration
Set LLM and API Keys
commit llm setup
Update LLM
commit llm update
Set LLM as default
Select: Set Default
Change API Key
Select: Change API Key
Delete LLM
Select: Delete
Getting API Keys
Google Gemini:
- Visit Google AI Studio
- Create a new API key
Grok (X.AI):
- Visit X.AI Console
- Generate an API key
Groq:
- Sign up at Groq Cloud
- Create an API key
Claude (Anthropic):
- Visit the Anthropic Console
- Create a new API key
OpenAI (ChatGPT):
- Visit OpenAI Platform
- Create a new API key
Ollama (Local LLM):
- Install Ollama: Visit Ollama.ai and follow installation instructions
- Start Ollama:
ollama serve
- Pull a model:
ollama pull llama3.1
- Set environment variables:
export COMMIT_LLM=ollama
export OLLAMA_MODEL=llama3.1 # llama3.1 by default
π€ Contributing
We welcome contributions! Please see our Contributing Guidelines for details.
Quick Start for Contributors
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature
- Make your changes
- Commit your changes:
git commit -m 'feat: add amazing feature'
- Push to the branch:
git push origin feature/amazing-feature
- Open a Pull Request
Areas Where We Need Help
- π Bug fixes
- β¨ New LLM provider integrations (OpenAI, Claude, etc.)
- π Documentation improvements
- π§ͺ Test coverage
- π Internationalization
- β‘ Performance optimizations
π License
This project is licensed under the MIT License - see the LICENSE file for details.
π Acknowledgments
- Thanks to all contributors
- Google Gemini and X.AI Grok for providing LLM APIs
- The open-source community
π Support
Made with β€οΈ for Hacktoberfest 2025