Squash Commit - CI/CD用語集の定義
squash commitは、マージ時にfeatureブランチ上のすべてのコミットを1つのコミットに結合します。中間的な詳細を犠牲にする代わりに、mainブランチの履歴を整然と保ちます - PRごとに1エントリです。
関連ガイド
Rebase vs Merge - CI/CD Glossary DefinitionRebase vs merge is the choice between replaying commits onto the target for a linear history, or joining bran…
Conventional Commit - CI/CD Glossary DefinitionA conventional commit follows a structured message like feat: or fix:, letting tooling derive changelogs and…
Pull Request - CI/CD Glossary DefinitionA pull request proposes merging one branch into another, bundling the diff with discussion, reviews, and CI c…