k;jhg
- Stage your files for commiting
git add .
"or"
git add "filename" - Set your commit and the message or note of the changes you are about to make
git commit -m "HERE ARE THE CHANGES I MADE" - Check that your ready to push
git status - This will push all your changes and commits to the MariahAlexandra's master branch, different branches will take diff
git push origin master
- This pulls the latest changes but will not overwrite changes. If you need to overwrite local files look below
git pull
This <br/>
THIS IS A TEST