LLM-assisted conventional commits generator for git repositories. Automatically generates git add and commit lines based on git diff and status.
Project description
gitmeup
gitmeup looks at your current git diff / git status and turns that messy working tree into small, focused, Conventional Commit–style git add / git commit commands, with safe quoting for awkward paths. It does not push anything, it just helps you decide what to commit and how to phrase it.
What problem does it solve?
Typical flow when you have a pile of changes:
- You stare at
git statusandgit diffdeciding how to split changes. - You manually type
git addcommands, hoping you did not miss a file. - You spend too long crafting a commit message that fits Conventional Commits.
- You worry about weird file paths breaking your shell.
gitmeup automates that boring part:
- Groups changes into atomic, semantically focused commits (refactor, docs, assets, etc.).
- Proposes ready-to-paste
git add/git commit -m "type(scope): message"sequences. - Handles strict path quoting so file names with spaces, brackets, unicode, etc. do not explode your shell.
- Runs in dry-run by default, so nothing happens until you opt in.
How it works (in practice)
From inside a git repo, gitmeup collects:
git diff --statgit status --shortgit diffwith noisy formats excluded from the body:*.png,*.jpg,*.jpeg,*.gif,*.svg,*.webp
This context is sent to a Gemini model, which returns a single bash code block with:
- Batches of
git add/git rm/git mv - Followed by matching
git commit -m "…", using Conventional Commits
You can then:
- Inspect the proposed commands (default), or
- Let
gitmeuprun them with--apply.
No git push is ever generated.
Installation
From PyPI (recommended)
pip install gitmeup
This installs the gitmeup CLI into your environment.
From source (editable dev install)
git clone https://github.com/ikramagix/gitmeup
cd gitmeup
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -e .
Configuration
gitmeup talks to Google Gemini via google-genai. It needs:
- A Gemini API key
- A model name (default is
gemini-2.0-flash-liteunless overridden)
1. Secrets via env file (recommended)
gitmeup will automatically load:
~/.gitmeup.env(global, for secrets and defaults)./.envin the current repo (for local overrides, optional)
Values in the environment override file values, and CLI flags override both.
Example global config:
# ~/.gitmeup.env
GEMINI_API_KEY=your-gemini-key-here
GITMEUP_MODEL=gemini-2.0-flash-lite
Keep
~/.gitmeup.envout of any git repo. It lives only in your home directory.
Optional per-repo overrides:
# ./.env (inside a project, usually without secrets if repo is shared)
GITMEUP_MODEL=gemini-2.0-pro
If you use a local .env with secrets, ensure .env is listed in that repo’s .gitignore.
2. Environment variables
You can also configure via plain env vars:
export GEMINI_API_KEY="your-gemini-key"
export GITMEUP_MODEL="gemini-2.0-flash-001"
3. CLI overrides (use sparingly)
The CLI accepts overrides:
gitmeup --model gemini-2.0-pro # override model for this run only
gitmeup --api-key "your-key-here" # override key (not recommended; leaks to history!)
For security, prefer ~/.gitmeup.env or environment variables over --api-key.
Usage
From any git repository with uncommitted changes:
gitmeup
This:
- Ensures you are inside a git repo.
- Checks
git status --porcelain. - If there are changes, sends context to the model and prints proposed commands.
Dry run (default)
gitmeup
Example output:
Proposed commands:
git add -- gitmeup/stuff.py README.md
git commit -m 'docs: Update README with export for GITMEUP_MODEL'
Dry run: not executing commands. Re-run with --apply to execute.
Nothing is executed until you explicitly ask.
Apply mode
To actually run the proposed git add and git commit commands:
gitmeup --apply
gitmeup will:
- Print each command as it executes.
- Stop on the first failure and exit with a non-zero status.
- Finally show a concise status:
Final git status:
## main...origin/main
M some/file
?? other/file
Review your history with:
git log --oneline --graph --decorate -n 10
Examples
Basic flow, with everything configured via env / .env:
# inside a repo with changes
gitmeup # review suggested batches
gitmeup --apply # once you are happy with the plan
git log --oneline --graph --decorate -n 10
Override model just for this run:
gitmeup --model gemini-2.0-flash-lite
Behaviour
- No pushing:
gitmeupnever outputsgit pushor remote commands. - No invented files: it only operates on files present in
git status/git diff. - Strict quoting: paths containing spaces, brackets, unicode, etc. are double-quoted; safe paths are not over-quoted.
- Atomic commits: model is instructed to group changes into small, semantic batches (e.g.
refactor,docs,assets), rather than one huge “misc” commit.
You still review and decide when to run --apply.
License
MIT License. See LICENSE for details.
Maintainer
Created and maintained by @ikramagix.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gitmeup-1.0.1.tar.gz.
File metadata
- Download URL: gitmeup-1.0.1.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb8a73c4372d15506a776aacd06b8896a8e323659ccbbfa97061c454c24b64a2
|
|
| MD5 |
f8198a7c55df6bb082ec71db4dc614b9
|
|
| BLAKE2b-256 |
d20153662625dca6760c3c8ee25fab3121bd9cf9a9dbe947182909b934dfa7d2
|
File details
Details for the file gitmeup-1.0.1-py3-none-any.whl.
File metadata
- Download URL: gitmeup-1.0.1-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5675cba80c9256b7dfb3d778b5caca7d1a9afdc9f85e5d6972a1fab239c040de
|
|
| MD5 |
f332c8ddd1b20e0cb48eca9103e941ab
|
|
| BLAKE2b-256 |
7f39e075125fc2f59a8849bf9fdd41173e557347f835580c8d4882343f98cc7a
|