Skip to content

lab 26 Changes in Main

Goals

While you were changing the greet branch, someone else decided to update the main branch. They added a README.

Switch to the main branch.

Execute:

git checkout main

Create the README.

README

This is the Hello World example from the git tutorial.

Commit the README to main.

Execute:

git add README
git commit -m "Added README"