Satu pull request (PR) — atau merge request — ialah permintaan untuk merge perubahan daripada satu branch ke branch lain, menyediakan tempat untuk code review, perbincangan, dan pemeriksaan automatik sebelum integrasi. PR menjadi pusat kepada pembangunan kolaboratif moden dan kualiti kod.
Apa itu 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.
