Pull Request - CI/CD用語集の定義
pull request(PR)は、branchのmergeを提案し、diffをreviewコメントとCIのstatus checkとともにパッケージ化します。これは、merge前にcode reviewと自動テストが通らなければならないゲートです。
関連ガイド
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…