Fast-Forward Merge - CI/CD用語集の定義
fast-forward merge は、ソース branch が分岐して以降ターゲット branch に新しい commit がない場合に起こり、Git は単に branch のポインタを前方へ移動させ、merge commit は作られません。git merge --no-ff で無効にできます。
fast-forward merge は、ソース branch が分岐して以降ターゲット branch に新しい commit がない場合に起こり、Git は単に branch のポインタを前方へ移動させ、merge commit は作られません。git merge --no-ff で無効にできます。
fast-forward merge は、ソース branch が分岐して以降ターゲット branch に新しい commit がない場合に起こり、Git は単に branch のポインタを前方へ移動させ、merge commit は作られません。git merge --no-ff で無効にできます。
関連ガイド
Merge Commit - CI/CD Glossary DefinitionMerge Commit: A merge commit is a commit with two or more parents that joins diverged branches together, reco…
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…