Every code change needs a safety net. Git gives you that net. You can treat commits like save points in a game. Branches let you try new ideas without breaking anything. History becomes a story of what happened and why.
This skill shows you how to use Git the right way. It helps you make small, clear commits. It tells you to keep your main branch always ready to use. Work on short branches and merge them fast. This keeps your code clean and your team fast.
You will learn to write commit messages that explain the reason behind a change. You will separate different types of work into different commits. This makes reviewing easier and reverting safer. Good Git habits make every developer more confident.
Global
mkdir -p ~/.claude/skills/git-workflow-and-versioningProject
mkdir -p .claude/skills/git-workflow-and-versioningSource Repository
Caveman Commitjuliusbrussee/caveman
Generate ultra-compressed commit messages with Conventional Commits format
Verification Before Completionobra/superpowers
Always run fresh verification before claiming work is complete or passing
Git Guardrails Claude Codemattpocock/skills
Stop dangerous git commands from running automatically with safety hooks
Setup Pre Commitmattpocock/skills
Automate code formatting type checking and tests before every commit
Using Git Worktreesobra/superpowers
Isolate your feature work with git worktrees and keep your main branch safe
Finishing A Development Branchobra/superpowers
Finish your development branch with merge, pull request, or cleanup options
Resolving Merge Conflictsmattpocock/skills
Resolve Git merge conflicts step by step preserving both intents
Git Commitgithub/awesome-copilot
Automatically write standardized git commits by analyzing your code changes