Pulling Changes

Goals

  • Learn that git pull is equivalent to a git fetch followed by a git 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:

  1. git pull

is indeed equivalent to the two steps:

  1. git fetch
  2. git merge origin/master