Pull Request - CI/CD Glossary Definition
A pull request (PR) proposes merging a branch, packaging the diff with review comments and CI status checks. It is the gate where code review and automated tests must pass before merge.
Related guides
Code Review - CI/CD Glossary DefinitionCode review is having peers inspect a change before merge, catching bugs and sharing knowledge - usually a re…
Merge Conflict - CI/CD Glossary DefinitionA merge conflict occurs when git cannot auto-reconcile changes to the same lines from two branches, requiring…
Squash Commit - CI/CD Glossary DefinitionA squash commit collapses all commits on a branch into one before merging, giving the main branch a clean, si…