Search notes:

merge [git]

Unless fast-forward, a (successful) merge results in the creation of a new commit. This commit has as parents the tips of the merged branches.

Merge strategies

octopus

Merging more than two branches.

resolve

When a merge failed, it must manually be resolved.

recursive

Used by git by default.

ours

subtree

custom?

Used for example with binary files. The user provides the merge mechanisms.

Starting over a merge that resulted in conflicts

git reset

See also

merge, pull, git merge-tree, git merge-file, git rerere, git merge-base, git mergetool

Index