Beginner Git & Version Control
Q16 / 100

What does "git pull" do?

Correct! Well done.

Incorrect.

The correct answer is B) It fetches changes from a remote repository and merges them into the current local branch

B

Correct Answer

It fetches changes from a remote repository and merges them into the current local branch

Explanation

"git pull" is essentially a combination of "git fetch" (downloading new data) followed by "git merge" (integrating that data into the current branch).

Progress
16/100