Your regular work cycle is:
git
git status
is a good way to see whether anything in your repository has changed
git pull
= “bring down changes from the shared repository”
git add FILENAME
= “add a file to the list to save locally”
git commit
= “save files on the list in your local copy of the repository”
git push
= “send your locally saved changes back to the shared repository”