branch-strategy
Installation
SKILL.md
Branch Strategy Guide
Choose and implement the right Git branching strategy.
When to Use
- Setting up a new project's Git workflow
- Discussing branching strategies
- Deciding between trunk-based and feature branches
- Establishing team conventions
Strategy Comparison
| Strategy | Best For | Team Size | Release Frequency |
|---|---|---|---|
| Trunk-Based | Continuous deployment | Any | Daily/Hourly |
| GitHub Flow | Web apps, SaaS | Small-Medium | Daily/Weekly |
| Git Flow | Versioned releases | Medium-Large | Scheduled |