In Git, a '_______ merge' is used to integrate changes from one branch into another, creating a new commit even if a fast-forward merge is possible.

  • Fast-forward
  • Recursive
  • Squash
  • Three-way
In Git, a 'Three-way merge' is used to integrate changes from one branch into another, creating a new commit even if a fast-forward merge is possible. This merge strategy involves comparing the changes in three branches—the two branch tips and their common ancestor. It is particularly useful when there are conflicting changes on both branches.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *