एक pull request (PR) — या merge request — एक branch से दूसरी में बदलाव merge करने का अनुरोध है, जो एकीकरण से पहले code review, चर्चा, और स्वचालित जाँचों के लिए एक जगह प्रदान करता है। PRs आधुनिक सहयोगी विकास और कोड गुणवत्ता के केंद्र में हैं।
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.
