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 "..."

Branch Naming

Installs
1
GitHub Stars
1
First Seen
Aug 23, 2026
git-workflow — oakoss/open-saas-kit