How this skill is triggered — by the user, by Claude, or both
Slash command
/git-expert:git-revertThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Undo commits safely by creating new commits that reverse the changes.
Undo commits safely by creating new commits that reverse the changes.
git revert <commit>git revert <oldest..newest>git revert --no-edit <commit>git revert --abortgit revert --continuegit revert -m <message> <commit>git revert -m <parent-number> <merge-commit>Triggered when user says "revert commit", "undo commit safely", "rollback changes".
Prefer git revert over git reset for shared branches. Always explain what the revert will do.
npx claudepluginhub andersonlimahw/lemon-ai-hub --plugin git-expertUndoes a bad git commit, file, or hunk without destroying unrelated work, using revert, checkout, or interactive patch.
Reverts changes by logical work unit (track, phase, or task) using git history and Conductor's track structure. Provides guided selection and commit discovery.