###Table of Contents
To add a file:
git add <filename>
Repeat this until you have added all the files that you want to add.
If you want to add all files:
git add *
Commit the file:
git commit -m "<short description of what you've done>"
Push the file:
git pull origin master
git push origin master
Edit a file
Add the file:
git add <filename>
Commit the file:
git commit -m "<short description of what you've done>"
Push the file:
git pull origin master
git push origin master
Delete a file
Add the file:
git add <filename>
Commit the file:
git commit -m "<short description of what you've done>"
Push the file:
git pull origin master
git push origin master