lab 26 Changes in Master

Goals

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

NOTE: In this lab we add a file called 'Readme' (without file suffix), this is a different file than the existing Readme.md file!

Switch to the master branch. 01

Execute:

git checkout master

Create the README. 02

File: README

This is the Hello World example from the git tutorial.

Commit the README to master. 03

Execute:

git add README
git commit -m "Added README"

Table of Contents