Skip to main content

Branching Strategy

See BRANCHING.md for the full guide.

Quick Referenceโ€‹

# Start a feature
git checkout develop
git pull origin develop
git checkout -b feature/your-feature

# Commit
git commit -m "feat(frontend): add new widget"

# PR โ†’ develop โ†’ main