view: page
title: "44. Pulling and merging changes"
Goals
- To learn that
git pullcommand is identical togit fetchplusgit merge.
Discussion
We are not going to run through the entire process of making and pulling a new change, but we want you to know that:
git pull
is actually equivalent to the following two steps:
git fetch git merge origin/master