Como adicionar e comprometer arquivos a um repositório Git

#Make a change and Commit the changed files with a message:
git commit -a -m "Commit message here"


#commit desired files with desired message:
git commit -m "Commit message here"
DON-PECH