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.
Loading...
Related Quiz
- In the context of a large project, how does Git facilitate code reviews and quality assurance?
- What advanced Git techniques can be used to manage database schema versions efficiently?
- Code reviews are often performed on the changes in a _______ before they are merged into the main branch.
- The __________ Git Hook is executed on the client side before a push is executed.
- What is the main purpose of forking a repository in Git?