Una pull request (PR) — o merge request — è una richiesta di unire i cambiamenti da un branch a un altro, fornendo un luogo per la code review, discussione e controlli automatizzati prima dell'integrazione. Le PR sono centrali nello sviluppo collaborativo moderno e nella qualità del codice.
Cos'è una pull request
A PR proposes merging a branch (e.g. a feature) into another (e.g. main):
→ shows the DIFF (what changed), a description, and discussion
→ reviewers comment, request changes, or approve
→ CI runs automated checks (tests, linting, builds) on the PR
→ once approved + checks pass → MERGE into the target branch
→ It's a gate and collaboration point before code is integrated.
