git-workflow
Installation
SKILL.md
Git Workflow
Quick Start
# Create feature branch
git checkout -b feat/add-user-auth
# Make changes and commit
git add src/auth/
git commit -m "feat(auth): add user authentication"
# Push and create PR
git push -u origin feat/add-user-auth
gh pr create --title "feat(auth): add user authentication" --body "..."