To learn that git pull command is identical to git fetch plus git merge.
git pull
git fetch
git merge
We are not going to run through the entire process of making and pulling a new change, but we want you to know that:
is actually equivalent to the following two steps:
git fetch git merge origin/master