A pull request (PR) — vagy merge request — egy kérelem, hogy egy ág módosításait egy másik ágba összevonjuk, amely helyet biztosít a code reviewnak, megbeszélésnek és automatizált ellenőrzéseknek az integráció előtt. A PRek központiak a modern kolaboratív fejlesztésben és a kódminőségben.
Mi az a 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.
