git status - changes
# Git submit changes
# Add all changes to git to be committed in the next commit
git add .
# View the current status of the git repository
git status
# Commit the changes to git with a commit message
git commit -m "My commit message"
# Configure the name and email address for git on your computer (only needed once per computer)
git config --global user.name "My Name"
git config --global user.email "me@example.com"
# Update the previous commit to change the author (used extremely rarely)
git commit --amend --reset-author
-----------
# check what are the files you submitting
git status
git add .
git status
git commit -m "Add bootstrap and applied layout to the page"
git push -u origin master