Go to the directory you want to add the repo to
git clone https://github.com/amiles9/cs321_projectFirst, create a file and then track it via
git add FILE_NAMEMake a local commit
git commit -m "Commit message"
# We can automatically stage files (thereby avoiding the add from above) if we include the -a flag
git commit -am "Commit message"Push it to the repo
# Try this version of push first
git push -u origin main