In Git, a _______ merge is used to integrate changes from one branch into another without creating a merge commit.

  • Fast-Forward
  • Squash
  • Recursive
  • Cherry-pick
The correct option is Fast-Forward. A Fast-Forward merge in Git is used to integrate changes from one branch into another when there are no new changes on the target branch. It performs a simple "move forward" of the branch pointer, avoiding the creation of a merge commit.
Add your answer
Loading...

Leave a comment

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