git
Installation
SKILL.md
Git Skill
Guidance for Git workflows, branching strategies, and best practices.
Quick Start
# Create feature branch from main
git checkout main && git pull
git checkout -b feature/user-authentication
# Make commits with conventional commits
git commit -m "feat: add user authentication"
# Push and create PR
git push -u origin feature/user-authentication