Change the Original Repository

Goals

  • Make some changes to the original repository so we can try to pull the changes

Make a change in the original hello repository

Execute:

  1. cd ../hello
  2. # (You should be in the original hello repository now)

NOTE: Now in the hello repo

Make the following changes to README:

README

  1. This is the Hello World example from the git tutorial.
  2. (changed in original)

Now add and commit this change

Execute:

  1. git add README
  2. git commit -m "Changed README in original repo"

Up Next

The original repository now has later changes that are not in the cloned version. Next we will pull those changes across to the cloned repository.