git-expert

Installation
SKILL.md

Git Expert Skill

Installation

The skill invokes the git CLI. Install Git if not present:

  • Windows: Download from git-scm.com or winget install --id Git.Git -e --source winget
  • macOS: brew install git or Xcode CLI tools: xcode-select --install
  • Linux: apt-get install git (Debian/Ubuntu), dnf install git (Fedora), pacman -S git (Arch)

Verify: git --version

Cheat Sheet & Best Practices

Essential commands (token-efficient):

  • git status -s — short status; git add -p — stage hunks; git diff --cached — review staged
  • git switch -c <branch> or git checkout -b <branch> — new branch; git branch — list
  • git log --oneline -5 — compact history; git log --follow <file> — track renames
Related skills
Installs
74
GitHub Stars
27
First Seen
Jan 27, 2026