describe-commit is a CLI tool that leverages AI to generate commit messages based on changes made in a Git repository.
Currently, it supports the following AI providers:
It also allows users to select the desired model for content generating.
π¦Ύ tl;dr
Turn this
Into this
Without any manual effort (there's no time to write commit messages, lazy developers unite)!
π₯ Features list
Generates meaningful commit messages using AI
Supports different AI providers
Can generate short commit messages (subject line only)
Optionally includes emojis (πβ¨ππβ β»οΈβ¬οΈπ§ππ‘) in commit messages
Runs as a standalone binary (only installed git is required)
Available as a Docker image
[!NOTE]
Under the hood, this app does two things before returning the generated commit message:
Retrieves the git diff (and git log optionally) for the specified directory
Sends this diff to the AI provider with the provided special prompt
Please keep in mind that when working with proprietary code, some parts of the code will be sent to the AI
provider. You should ensure that this is permitted by your company's policy. Additionally, make sure that
the AI provider does not store your data (or stores it securely).
The author of this tool is not responsible for any data leaks or security issues.
Download the latest binary for your architecture/OS from the releases page. For example, to install
on an amd64 system (e.g., Debian, Ubuntu) you can run:
[!TIP]
Each release includes binaries for linux, darwin (macOS) and windows (amd64 and arm64 architectures).
You can download the binary for your system from the releases page (section Assets). And - yes,
all what you need is just download and run single binary file.
docker run --rm \
-u "$(id -u):$(id -g)" \ # to avoid problems with permissions
-v "$HOME/.config/describe-commit.yml:/config.yml:ro" \ # use your configuration file
-v "$(pwd):/rootfs:ro" \ # mount current directory as read-only
-e "CONFIG_FILE=/config.yml" \ # specify the configuration file path
-w "/rootfs" \ # set the working directory
ghcr.io/tarampampam/describe-commit ...
[!NOTE]
Itβs recommended to avoid using the latest tag, as major upgrades may include breaking changes.
Instead, use specific tags in :X.Y.Z or only :X format for version consistency.
β Configuration
You can configure describe-commit using a YAML file. Refer to this example for
available options.
You can specify the configuration file's location using the --config-file option. By default, however, the
tool searches for the file in the user's configuration directory:
A configuration file in the working directory or any parent directory, up to the root (the file can be
named .describe-commit.yml or describe-commit.yml and should be placed in the directory where the tool
is executed)
A configuration file in the user's configuration directory (e.g., ~/.configs/describe-commit.yml for Linux)
This means you can store API tokens in the user's configuration directory and override them with command-line
options or a configuration file in the working directory when needed (e.g., enabling emojis only for specific
projects).
π Use Cases
β Generate a commit message for the current Git repository
...and commit the changes in a single command:
git commit -m "$(/path/to/describe-commit)"
[!NOTE]
A Git repository must be initialized in the specified directory, and git must be installed on your system.
Additionally, ensure that changes are staged (git add -A) before running the tool.
β Integration with the git
Add this alias to your ~/.gitconfig file:
[alias]
# Stage all changes and commit them with a generated message
wip = "!f() { git add -Av && git commit -m \"$(describe-commit)\"; }; f"
Now, in any repository, you can simply run:
git wip
And voilΓ ! All changes will be staged and committed with a generated message.
β Get a Commit Message for a Specific Directory
describe-commit /path/to/repo
Example output:
docs: Add initial README with project description
This commit introduces the initial README file, providing a comprehensive
overview of the `describe-commit` project. It includes a project description,
features list, installation instructions, and usage examples.
- Provides a clear introduction to the project
- Guides users through installation and basic usage
- Highlights key features and functionalities
docs(README): Update project description and installation instructions
Enhanced the README file to provide a clearer project overview and detailed installation instructions. The
changes aim to improve user understanding and accessibility of the `describe-commit` CLI tool.
- Added project description and AI provider support
- Included features list for better visibility
- Updated installation instructions with binary and Docker options
- Provided usage examples for generating commit messages
β Generate a short commit message (only the first line) with emojis
describe-commit -s -e
Will give you something like this:
π docs(README): Update project description and installation instructions
π» Command line interface
Description:
This tool leverages AI to generate commit messages based on changes made in a Git repository.
Usage:
describe-commit [<options>] [<git-dir-path>]
Version:
0.0.0@undefined
Options:
--config-file="β¦", -c="β¦" Path to the configuration file (default: depends/on/your-os/describe-commit.yml) [$CONFIG_FILE]
--short-message-only, -s Generate a short commit message (subject line) only [$SHORT_MESSAGE_ONLY]
--commit-history-length="β¦", --cl="β¦", --hl="β¦" Number of previous commits from the Git history (0 = disabled) (default: 20) [$COMMIT_HISTORY_LENGTH]
--enable-emoji, -e Enable emoji in the commit message [$ENABLE_EMOJI]
--max-output-tokens="β¦" Maximum number of tokens in the output message (default: 500) [$MAX_OUTPUT_TOKENS]
--ai-provider="β¦", --ai="β¦" AI provider name (gemini|openai) (default: gemini) [$AI_PROVIDER]
--gemini-api-key="β¦", --ga="β¦" Gemini API key (https://bit.ly/4jZhiKI, as of February 2025 it's free) [$GEMINI_API_KEY]
--gemini-model-name="β¦", --gm="β¦" Gemini model name (https://bit.ly/4i02ARR) (default: gemini-2.0-flash) [$GEMINI_MODEL_NAME]
--openai-api-key="β¦", --oa="β¦" OpenAI API key (https://bit.ly/4i03NbR, you need to add funds to your account) [$OPENAI_API_KEY]
--openai-model-name="β¦", --om="β¦" OpenAI model name (https://bit.ly/4hXCXkL) (default: gpt-4o-mini) [$OPENAI_MODEL_NAME]
--help, -h Show help
--version, -v Print the version
License
This is open-sourced software licensed under the MIT License.