Un pull request (PR) — sau merge request — este o cerere de a îmbina modificări dintr-o ramură în alta, oferind un loc pentru code review, discuție și verificări automate înainte de integrare. PR-urile sunt centrale în dezvoltarea colaborativă modernă și calitatea codului.
Ce este un 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.
