44. Pulling and merging changes
Goals
- To learn that
git pull
command is identical togit fetch
plusgit 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