短命ブランチ - CI/CD 用語集の定義
短命ブランチとは、merge されるまで数時間から数日しか存続しない feature ブランチです。頻繁な統合により main に近い状態を保つため、CI のフィードバックが速く、コンフリクトも小さいままです。
なぜ好まれるのか
短命ブランチは trunk-based development の柱です。小さく頻繁に merge される変更は、一度にまとめて着地する大きなブランチよりもレビュー、bisect、revert がしやすくなります。
関連ガイド
Release Branch - CI/CD Glossary DefinitionRelease Branch: A release branch is a branch (e.g. `release/2.1`) cut from main to stabilize a specific versi…
What Is a Feature Branch?A feature branch is a short-lived branch where a single feature or fix is developed in isolation before mergi…
Continuous Integration (CI) - CI/CD Glossary DefinitionContinuous Integration (CI): **Continuous integration** is the practice of automatically building and testing…