Git workflow mastery — atomic commits, branch management, rebase, merge, and history cleanup. Use when committing, reviewing history, or fixing git issues.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add skeletorflet/opencode-supreme-setup --skill git-master --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Git Master?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/skeletorflet-git-master)More formats (shields.io, HTML) on the badges page.
---
name: git-master
description: Git workflow mastery — atomic commits, branch management, rebase, merge, and history cleanup. Use when committing, reviewing history, or fixing git issues.
---
## git-master
Master git workflows for clean, atomic history.
### Atomic commits
- One logical change per commit
- Commit messages: type(scope): description
- feat: new feature
- fix: bug fix
- chore: maintenance
- docs: documentation
- refactor: code change without fix/feat
- test: adding tests
- style: formatting
### Branch workflow
- main — production-ready
- feat/name — new features
- fix/name — bug fixes
- chore/name — maintenance
### Interactive rebase
- git rebase -i HEAD~n — squash, reorder, fixup
- git rebase main — replay commits on main
- git commit --fixup <hash> — mark as fixup
- git rebase -i --autosquash — auto squash fixups
### Best practices
- Rebase before merge for linear history
- Never rebase shared branches
- Use git stash for WIP
- git bisect to find the commit that introduced a bug
- git blame to understand why code exists
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Ultra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says "review this PR", "code review", "review the diff", "/review", or invokes /caveman-review. Auto-triggers when reviewing pull requests.