Beginner Git & Version Control
Q21 / 100

What does "git merge" do?

Correct! Well done.

Incorrect.

The correct answer is B) It combines the changes from one branch into another, creating a new merge commit if the histories have diverged

B

Correct Answer

It combines the changes from one branch into another, creating a new merge commit if the histories have diverged

Explanation

"git merge <branch>" integrates the changes from the named branch into the current branch, typically creating a merge commit that has two parent commits.

Progress
21/100