git

# Login to calgary.
ssh amckinn@calgary.cs.washington.edu

# Create a new directory for the demo.
cd cse374/lecture
mkdir lec06
cd lec06

# Clone my personal git repository.
git clone git@gitlab.cs.washington.edu:cse374-24wi-students/cse374-24wi-amckinn.git
ls
cd cse374-24wi-amckinn
ls
git status

# Edit the README.md file and add it to the staging area.
vim README.md
git status
git add README.md
git status
git commit -m “Add a happy face to README”

# Push the change to the central repository.
git status
git push origin main