Git best practices and workflows including conventional commits, branching strategies, and collaboration patterns.
Scanned 5/31/2026
Install to Claude Code
npx -y skills add diegosouzapw/awesome-omni-skill --skill git-workflow-kprsnt2 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Git Workflow Kprsnt2?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/diegosouzapw-git-workflow-kprsnt2)More formats (shields.io, HTML) on the badges page.
---
name: git-workflow
description: Git best practices and workflows including conventional commits, branching strategies, and collaboration patterns.
globs: ["**/.git/**", "**/.gitignore", "**/.gitattributes"]
alwaysApply: ["**/CONTRIBUTING.md", "**/CHANGELOG.md"]
priority: 80
tags: ["workflow"]
---
# Git Workflow Best Practices
## Commit Messages (Conventional Commits)
- feat: New feature
- fix: Bug fix
- docs: Documentation
- style: Formatting
- refactor: Code restructuring
- test: Adding tests
- chore: Maintenance
Format: type(scope): description
Example: feat(auth): add password reset flow
## Branch Naming
- feature/TICKET-description
- fix/TICKET-description
- hotfix/description
- release/v1.0.0
- docs/description
## Workflow
- Keep commits atomic and focused
- Rebase feature branches on main
- Squash WIP commits before merge
- Never force push to shared branches
- Use pull request templates
- Require code reviews
## .gitignore
- Ignore build artifacts
- Ignore node_modules, venv, target
- Ignore local config (.env.local)
- Ignore IDE settings (.idea, .vscode)
- Ignore OS files (.DS_Store)
## Advanced
- Use git hooks with husky/pre-commit
- Sign commits with GPG
- Use git-crypt for secrets
- Bisect for finding bugs
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 commit message generator. Cuts noise from commit messages while preserving intent and reasoning. Conventional Commits format. Subject ≤50 chars, body only when "why" isn't obvious. Use when user says "write a commit", "commit message", "generate commit", "/commit", or invokes /caveman-commit. Auto-triggers when staging changes.
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.
Remove unused code from this project with ultrawork mode, LSP-verified safety, atomic commits. Triggers: remove dead code, dead code, cleanup, remove unused.
Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.
一个全面的 Claude Code 会话验证系统。