Merge Commit - CI/CD用語集の定義
merge commit は 2 つ以上の親を持つ commit で、分岐した branch をまとめて結合し、どこでいつ結合されたかを正確に記録します。これは fast-forward ではない git merge の結果です。
merge commit は 2 つ以上の親を持つ commit で、分岐した branch をまとめて結合し、どこでいつ結合されたかを正確に記録します。これは fast-forward ではない git merge の結果です。
merge commit は 2 つ以上の親を持つ commit で、分岐した branch をまとめて結合し、どこでいつ結合されたかを正確に記録します。これは fast-forward ではない git merge の結果です。
関連ガイド
Fast-Forward Merge - CI/CD Glossary DefinitionFast-Forward Merge: A fast-forward merge happens when the target branch has no new commits since the source b…
Rebase - CI/CD Glossary DefinitionRebase: Rebase replays your commits on top of another base commit, rewriting their SHAs to produce a linear h…
Commit-ish - CI/CD Glossary DefinitionCommit-ish: A commit-ish is anything Git can resolve to a commit: a full or short SHA, a branch, a tag, `HEAD…