ஒரு pull request (PR) — அல்லது merge request — என்பது ஒரு branch-இலிருந்து மற்றொரு branch-ஐக்கு மாற்றங்களை merge செய்வதற்கான ஒரு request ஆகும். இது code review, விவாதம் மற்றும் integration-க்கு முன் automated checks-க்கான இடத்தை வழங்குகிறது. PR-கள் நவீன collaborative development மற்றும் code quality-க்கு மையமாக உள்ளன.
ஒரு 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.
