Pulling Shared Changes

Goals

  • Learn how to pull changes from a shared repository.

Quick hop over to the clone repository and let’s pull down the changes just pushed to the shared repo.

Execute:

  1. cd ../cloned_hello

NOTE: Now in the cloned_hello repo.

Continue with…

Execute:

  1. git remote add shared ../hello.git
  2. git branch --track shared master
  3. git pull shared master
  4. cat README