lab 44 Pulling Changes
Goals
- Learn that
git pull
is equivalent to agit fetch
followed by agit merge
.
Discussion
We’re not going to go through the process of creating another change and pulling it again, but we do want you to know that doing:
git pull
is indeed equivalent to the two steps:
git fetch git merge origin/master