Teams adopt branching workflows — conventions for how branches are used, named, and merged — to coordinate collaboration. Common ones include GitHub Flow, Git Flow, and trunk-based development, each suited to different needs.
GitHub Flow (simple, common)
→ 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
