Pull request (PR) – neboli merge request – je žádost o sloučení změn z jedné větve do druhé, která poskytuje místo pro code review, diskuzi a automatizované kontroly před integrací. PRy jsou klíčové pro moderní kolaborativní vývoj a kvalitu kódu.
Co je 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.
