Skip to content

Sashayerty/commit_maker

Repository files navigation

Commit Maker Created with Python Created with uv Created with ollama PyPi

Demo

All commits in the repository are generated by this program

This CLI utility automatically creates meaningful git commit messages using local models via ollama/Mistral AI API based on the output of git status and git diff commands. It is implemented as a single file for easy conversion into an executable.

  1. Features
  2. Requirements
  3. Installation
  4. Setting up environment variables
  5. Usage
  6. Notes
  7. License

Features

  • Automatically generates meaningful commit messages in Russian
  • Interactive confirmation before creating a commit
  • Works with both existing and new Git repositories
  • Uses local models/Mistral AI API to generate commit messages based on repository changes

Requirements

  • Git installed on your system
  • Mistral API key (for using Mistral AI API)
  • Ollama installed on your system (for using local models)

Getting a Mistral AI API Key

To get a key, go to the Mistral console website Mistral and create an API key. You need a Mistral account to do this.

Installing Ollama

To install ollama, go to the Ollama website and choose the method suitable for your system.

Installation

Pip

Install the latest release from PyPI:

# Windows
pip install commit_maker
# Linux/MacOS
pip3 install commit_maker

From Source

When installing from source, use the -e flag to always have the latest version of the utility after git pull without reinstallation!

git clone https://github.com/Sashayerty/commit_maker
cd ./commit_maker
# Windows
pip install -r requirements.txt
# Linux/MacOS
pip3 install -r requirements.txt

Setting Up Environment Variables

After installing the utility, you must add the MISTRAL_API_KEY environment variable.

Windows

  1. Open Command Prompt as Administrator
  2. Set the Mistral API key:
    setx MISTRAL_API_KEY "your_api_key_here"
  3. Restart your terminal/IDE to apply the changes

Linux/macOS

  1. Open the terminal
  2. Add to your shell configuration file (~/.bashrc, ~/.zshrc, or ~/.bash_profile):
    export MISTRAL_API_KEY="your_api_key_here"
  3. Reload the configuration:
    source ~/.bashrc  # or whichever file you edited

Usage

commit_maker [OPTION] [VALUE]

Usage Examples

-h, --help - display help
-l, --local-models - use local models
-m, --max-symbols - limit the length of the commit message
-M, --model - specify which local model to use (with -l)
-d, --dry-run - display the message based on staged changes without creating a commit
-t, --temperature - model temperature when creating the message
-e, --exclude - files to ignore when creating the commit message
-w, --wish - wishes/edits for the message
--version - show version

  1. Use local models, limit commit message length to 300 characters, use qwen2.5:12b
    commit_maker -l -m 300 -M qwen2.5:12b
  2. Use Mistral, temperature 1.3, dry run
    commit_maker -t 1.3 -d
  3. Local models, interactive model selection
    commit_maker -l
  4. Local models, message length 100 characters, ignore uv.lock, wish "Mention the README.md change"
    commit_maker -l -m 100 -e "./uv.lock" -w "Mention the README.md change"

Notes

  • To view all possible script execution options, add the --help flag
  • The script will show the generated commit message before creating it
  • You can regenerate the message by pressing r when prompted for confirmation
  • By default, messages are generated in Russian (can be changed in the script)

License

Commit Maker is licensed under MIT

About

CLI-утилита для генерации сообщения коммита

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages