44. Pulling and merging changes

Goals

  • To learn that git pull command is identical to git fetch plus git 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