$ git pull origin master
From github.com:olgabot/REDACTED
* branch master -> FETCH_HEAD
Updating edd5eec..72537f4
error: Your local changes to the following files would be overwritten by merge:
Force getting all the remote data
git fetch --all
git reset --hard origin/master
To terminate a hanging command = ctrl-z OR ctrl-c OR escape OR q
mkdir = make a directory
cd = change direction
ls = listing files
.. = this location
git add __________ (specific file name)
git commit -m "MESSAGE ABOUT CHANGES MADE"
git status = what files are currently being staged
git remote -v = which github cloud is this using (tells what places you are looking from, where code originates)
git push = pushes all code onto github
