lab 21 Change the Original Repository

Goals

Make a change in the original hello repository 01

Execute:

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

NOTE: Now in the hello repo

Make the following changes to README:

File: README

This is the Hello World example from the git tutorial.
(changed in original and pushed to shared)

Now add and commit this change

Execute:

git add README
git commit -m "Changed README in original repo"

Up Next 02

The original repository now has later changes that are not in the shared version. Next we will push those changes to the shared repository.

Table of Contents