git-advanced

Installation
SKILL.md

Advanced Git Patterns

Quick Reference

Task Command
Rebase onto main git rebase main
Interactive rebase (squash) git rebase -i HEAD~N
Cherry-pick a commit git cherry-pick <sha>
Find bug introduction git bisect start
Stash with name git stash push -m "description"
Undo last commit (keep changes) git reset --soft HEAD~1
See what changed in a file git log -p -- path/to/file
Find who changed a line git blame path/to/file

Rebase Workflows

Rebase feature branch onto main

Installs
2
GitHub Stars
3
First Seen
Jun 14, 2026
git-advanced — sagargupta16/claude-skills