git-workflow-deployment
Installation
SKILL.md
Git Workflow & Deployment Skill
Branch Strategy
Production Branch: main (auto-deploys to https://omerakben.com/)
Staging Branch: pre-deployment (all features branch from here)
Feature Branches: feature/* (branch from pre-deployment, merge back via PR)
Critical Rules
- Always branch from
pre-deploymentfor new features - All 6 quality gates MUST pass before merging to
pre-deployment - Pre-deployment → main auto-merges after all quality gates pass (no manual intervention)
- Never commit directly to main - all production deployments go through
pre-deployment