I team adottano workflow di branching — convenzioni su come i branch vengono utilizzati, denominati e fusi — per coordinare la collaborazione. I comuni includono GitHub Flow, Git Flow e trunk-based development, ciascuno adatto a esigenze diverse.
GitHub Flow (semplice, diffuso)
→ main is always DEPLOYABLE
→ create a FEATURE BRANCH off main for each change
→ open a PULL REQUEST → review → merge to main → deploy
main ──┬──────────────┬── (always deployable)
└─ feature ─PR─┘
✓ Simple, great for continuous deployment / web apps
✓ Most common for modern teams; minimal overhead
