git-mastery

Installation
SKILL.md

Git Mastery Skill

🛡️ Safety First Protocol

  • Never force push to main / master / develop.
  • Always use --force-with-lease instead of --force.
  • Always create a backup branch before complex operations: git branch backup/feature-xyz-pre-rebase

Advanced Workflows

1. Automated Bug Hunting (Git Bisect)

Find the specific commit that introduced a bug.

# Start
git bisect start
git bisect bad              # Current version is broken
git bisect good <commit-sha> # Version that worked
Installs
6
GitHub Stars
175
First Seen
May 16, 2026
git-mastery — softspark/ai-toolkit