Git Expert Skill Installation The skill invokes the CLI. Install Git if not present: - Windows : Download from git-scm.com or - macOS : or Xcode CLI tools: - Linux : (Debian/Ubuntu), (Fedora), (Arch) Verify: Cheat Sheet & Best Practices Essential commands (token-efficient): - — short status; — stage hunks; — review staged - or — new branch; — list - — compact history; — track renames - — discard unstaged; — undo last commit (keep changes) - then or — prefer fetch+merge over blind pull Hacks: Set and / . Use aggressively. Prefer for clean history on feature merge. Use to bring single commits.…