Skip to content

lab 41 Change the Original Repository

Goals

Make a change in the original hello repository

Execute:

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

NOTE: Now in the hello repo

Make the following changes to README:

README

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

Now add and commit this change

Execute:

git add README
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.