En pull request (PR) — eller merge request — er en forespørsel om å flette endringer fra en branch til en annen, og gir et sted for code review, diskusjon og automatiserte sjekker før integrasjon. PRs er sentrale i moderne samarbeidende utvikling og kodekvalitet.
Hva en pull request er
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.
