Commit Changes

Examples in Shell
# Commit changes only after staging is in a good state.
git commit -m "My changes"

# Automically stage files that have been modified or deleted and commit.
git commit -am "My changes"