tools-git-advanced

Installation
SKILL.md

Advanced Git Operations

Overview

Advanced git commands for complex workflows, history manipulation, and debugging. Use this skill for rebasing, cherry-picking, finding bugs, and recovering from mistakes.

When to Use

  • Rebasing branches and cleaning history
  • Cherry-picking specific commits
  • Finding which commit introduced a bug
  • Recovering lost commits
  • Complex merge scenarios
  • Stash management

Interactive Rebase

Start Rebase

git rebase -i HEAD~5              # Last 5 commits
git rebase -i main                # Onto main
Related skills
Installs
1
GitHub Stars
1
First Seen
Mar 16, 2026