Code Review - CI/CD Glossary Definition
Code review is the practice of having one or more people read a proposed change before it merges, to catch bugs, improve design, and share knowledge. In Git workflows it happens on a pull request.
As a CI gate
Branch protection rules can require a minimum number of approving reviews plus passing status checks before merge, making review an enforced gate rather than a courtesy.
Related guides
Pull Request - CI/CD Glossary DefinitionPull Request: A pull request (PR; merge request on GitLab) is a proposal to merge one branch into another. It…
Merge Conflict - CI/CD Glossary DefinitionMerge Conflict: A merge conflict occurs when Git cannot automatically reconcile two branches because both cha…