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.
Below is a sample execution of commit-msg:
Before running the application, ensure you have set the system environment variables. and add commit.exe to path variables (same for linux macOS)
This project is participating in Hacktoberfest 2025! We welcome contributions from developers of all skill levels.
Looking to contribute? Check out:
β¨ AI-Powered Commit Messages - Automatically generate meaningful commit messages
π Multiple LLM Support - Choose between Google Gemini or Grok
π Context-Aware - Analyzes staged and unstaged changes
π Easy to Use - Simple CLI interface
β‘ Fast - Quick generation of commit messages
You can use either Google Gemini or Grok as the LLM to generate commit messages:
| Variable | Values | Description |
|---|---|---|
COMMIT_LLM |
gemini or grok |
Choose your LLM provider |
GEMINI_API_KEY |
Your API key | Required if using Gemini |
GROK_API_KEY |
Your API key | Required if using Grok |
-
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
-
Set up environment variables:
Windows:
setx COMMIT_LLM "gemini" setx GEMINI_API_KEY "your-api-key-here"
Linux/macOS:
export COMMIT_LLM=gemini export GEMINI_API_KEY=your-api-key-here # Add to ~/.bashrc or ~/.zshrc to persist
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 src/main.go
# (Optional) Install to GOPATH
go installNavigate to any Git repository and run:
commit .Or if running from source:
go run src/main.go .# Make changes to your code
echo "console.log('Hello World')" > app.js
# Stage your changes
git add .
# Generate commit message
commit .
# Output: "feat: add hello world console log to app.js"- π Generate commit messages for staged changes
- π Analyze both staged and unstaged changes
- π Get context from recent commits
- β Create conventional commit messages
Google Gemini:
- Visit Google AI Studio
- Create a new API key
- Set the
GEMINI_API_KEYenvironment variable
Grok (X.AI):
- Visit X.AI Console
- Generate an API key
- Set the
GROK_API_KEYenvironment variable
We welcome contributions! Please see our Contributing Guidelines for details.
- 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
- π Bug fixes
- β¨ New LLM provider integrations (OpenAI, Claude, etc.)
- π Documentation improvements
- π§ͺ Test coverage
- π Internationalization
- β‘ Performance optimizations
This project is licensed under the MIT License - see the LICENSE file for details.
- Thanks to all contributors
- Google Gemini and X.AI Grok for providing LLM APIs
- The open-source community
- π Report a Bug
- π‘ Request a Feature
- π¬ Ask a Question
Made with β€οΈ for Hacktoberfest 2025
