git

# Login to cancun.
ssh alseo@cancun.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-24su-students/cse374-24su-alseo.git
ls
cd cse374-24su-alseo
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