
Git Commands
- Updated July 2, 2026
- leonasdev/dot-claude
git-commands is a Claude Code skill in the AI & Agent Building category. Git related commands.
Key points
- git-commands
- AI & Agent Building
- AI-coding skill
Git Commands by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add leonasdev/dot-claude/plugin install git-commands@dot-claudeAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | July 2, 2026 |
|---|---|
| Repository | leonasdev/dot-claude ↗ |
What it does
Git related commands.
README.md
Git Commands Plugin
Git-related automation commands for Claude Code.
Commands
/commit, /commit+, /commit++
Generate git commit messages based on your staged changes. Three variants with different model tiers for varying levels of detail.
| Command | Model | Output |
|---|---|---|
/commit |
Haiku 4.5 | Single-line commit subject |
/commit+ |
Sonnet 4.5 | Detailed commit message |
/commit++ |
Opus 4.5 | Comprehensive commit message |
What it does:
- Reads current git status
- Analyzes staged changes diff
- Reviews current branch and recent commits for context
- Generates an appropriate commit message
Usage:
/commit
/commit+
/commit++
Example workflow:
# Stage your changes
git add -p
# Generate a commit message
/commit
# Claude will analyze your staged changes and output a commit message
/pr
Generate a pull request title and description for your current branch.
What it does:
- Identifies the correct base branch (usually
mainormaster) - Analyzes the diff between your branch and the base
- Generates a PR title and description in a copyable markdown block
Usage:
/pr
Example workflow:
# After committing your changes
/pr
# Claude will output a markdown block with PR title and body ready to copy
Related skills
AI & Agent Buildingagents