Ein Pull Request (PR) – oder Merge Request – ist eine Anfrage, um Änderungen von einem Branch in einen anderen zu mergen und bietet einen Ort für Code Review, Diskussion und automatisierte Überprüfungen vor der Integration. PRs sind zentral für moderne kollaborative Entwicklung und Codequalität.
Was ein Pull Request ist
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.
