Advanced Git workflows help you keep your project history clean and easy to read. You can fix mistakes, combine commits, or find the exact change that broke something. This skill gives you tools like interactive rebase, cherry-picking, and git bisect to handle complex situations with confidence.
When working on a team, you often need to apply a single fix from one branch to another. You can use cherry-pick to do that without merging everything. Need to work on two features at once? Worktrees let you have multiple branches open at the same time without switching folders.
Even if you delete something by accident, you can get it back using the reflog. These methods turn Git from a simple tool into a powerful assistant for any developer dealing with messy history or tricky collaboration.
Global
mkdir -p ~/.claude/skills/git-advanced-workflowsProject
mkdir -p .claude/skills/git-advanced-workflowsSource 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
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
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
Git Commitgithub/awesome-copilot
Automatically write standardized git commits by analyzing your code changes
Conventional Commitgithub/awesome-copilot
Write clean standardized git commit messages with easy XML templates and examples