Git actions simplified
Project description
Generate git actions without interrupting your coding flow.
git add . && git commit -am "ugh... I vide all the way, what did I do? what do I even say here?" && git push -u origin dev
⬇️
gitme -u <your-remote-branch>
gitme show
Prerequisites
- Python 3.8+
- At least one AI provider API key:
- Anthropic API key for Claude models, default is
claude-haiku-4-5 - OpenAI API key for GPT models,
openaiPython package for OpenAI support, default isgpt-4o-mini
- Anthropic API key for Claude models, default is
- Git, all gitme commands must be run from within a git repository directory. If you're not in a git repository, you'll see an error message prompting you to initialize a git repository with
git init.
Features
- Analyzes git diffs to generate contextually relevant commit messages
- Detects untracked files and prompts to add them
- Supports staged changes only or all modified files
- Streamline your git workflow: add files, commit and push to upstream branch with user confirmation on every step, extremely lightweight and fast.
- User input: Option to edit and then confirm the messages before committing
- Multiple AI Providers: Choose between Anthropic or OpenAI, default is Anthropic
- Model options for both providers
- File changes and commit message history for logging, search and review at local
- Repository-specific message storage
Installation
Install from PyPI:
pip install gitme-cli --upgrade
Or install directly from GitHub:
pip install git+https://github.com/wangjing0/gitme.git
Or develop locally:
git clone https://github.com/wangjing0/gitme.git
cd gitme
pip install -e .
AI Provider Setup
Choose one or both providers:
For Anthropic Claude (default):
export ANTHROPIC_API_KEY="your-anthropic-api-key-here"
For OpenAI GPT (Optional):
export OPENAI_API_KEY="your-openai-api-key-here"
Basic Usage
# Generate message for staged changes (default - uses Anthropic Claude)
gitme
# Generate message for all changes
gitme -a
# Generate message and commit
gitme -c
# Generate message and commit and push to remote branch
gitme -u <remote-branch>
# Use OpenAI instead of Anthropic (default)
gitme -p openai
# Use OpenAI with specific model
gitme -p openai -m gpt-4o
# Use Anthropic with specific model
gitme -m claude-3-5-haiku-latest
# Combine with other options
gitme -p openai -c # Use OpenAI and commit
Message history and modified files
# Show previous messages (includes provider/model info)
gitme show
# Show last 5 messages
gitme show -n 5
# Show from all repositories
gitme show -r
# Clear history
gitme show --clear
Enhanced Message History Display:
[1] 2025-09-30 07:48:32
💬 Message:
Update default AI model to Claude Sonnet 4
- Modified README.md
🤖 AI Provider: Anthropic (claude-sonnet-4-5)
📝 Files changed: 1
[2] 2025-09-30 07:45:54
💬 Message:
Update documentation images and references
- Modified README.md
- Added images/gitmecommit.png
- Added images/gitmeshow.png
- Cleaned up src/gitme/cli.py
🤖 AI Provider: Anthropic (claude-sonnet-4-5)
📝 Files changed: 4
Options
Generate Options
-s, --staged: Analyze only staged changes-a, --all: Analyze all changes (staged and unstaged)-p, --provider: Choose AI provider (anthropicoropenai, default: anthropic)-m, --model: Model to use (provider-specific)-c, --commit: Create commit with generated message (usesgit commit -a -m "auto-generated message")-u, --upstream:Analyze all changes and create commit and push to upstream branch (specify branch name)
Show Options
-n, --limit: Number of messages to show-r, --all-repos: Show messages from all repositories--clear: Clear message history
Available Models
Anthropic Claude:
claude-haiku-4-5(default)claude-sonnet-4-5claude-3-5-haiku-latest
OpenAI GPT:
gpt-4o-mini(default when using OpenAI)gpt-4ogpt-4
Privacy & Security Notice
⚠️ Important: When using gitme or gitme generate, your code changes will be sent to the selected AI provider (Anthropic Claude or OpenAI GPT) for processing. The tool does NOT send your entire codebase - only the diff contents of changed files.
Please exercise caution when using this tool:
- Avoid using it with repositories containing sensitive information, credentials, or proprietary code
- Review your changes before running the command to ensure no sensitive data is included
- Consider using
.gitignoreto exclude sensitive files from git tracking - Be aware that different providers have different data handling policies
- Both Anthropic and OpenAI have their own privacy policies and data retention practices
New Release
chmod +x release.sh && ./release.sh <version>
then upload to PyPI
twine upload dist/*
Roadmap
- User feedback on the generated message and modify accordingly
- Add a way to add custom prompt to the AI provider
- add features: search messages and return commit_id, rewind to a previous commit, redo the commit message, etc.
- Local models with Ollama support
Contributing
Contributions are welcome! Please feel free to submit a pull request. ❤️ @wangjing0
License
MIT
Project details
Release history Release notifications | RSS feed
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 gitme_cli-0.9.1.tar.gz.
File metadata
- Download URL: gitme_cli-0.9.1.tar.gz
- Upload date:
- Size: 254.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65404cc6709a9fd4361ffce34dc48c6d899dd6206626cf486ea98c90efcc4202
|
|
| MD5 |
8628cdf1555ab5db6f277428b449e039
|
|
| BLAKE2b-256 |
5ddb6db66ed36e0f6f20db3375a2117e880ff54ae2759b7848db4e4265f56fea
|
File details
Details for the file gitme_cli-0.9.1-py3-none-any.whl.
File metadata
- Download URL: gitme_cli-0.9.1-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee08630dd8ee1a2151d30099cfa318e5a4029f4a2d473c18430ecd6d635a1812
|
|
| MD5 |
9b6deb9beeb12697caf41a415b2607fc
|
|
| BLAKE2b-256 |
b54691f747411c622084ff2207e0a86d08fd0660720aa0c1e59d47f3aa059de2
|