En pull request (PR) — eller merge request — är en förfrågan om att slå samman ändringar från en gren till en annan, och tillhandahåller en plats för kodgranskning, diskussion och automatiserade kontroller innan integrering. PR är centrala för modern gemensam utveckling och kodkvalitet.
Vad en pull request är
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.
