Cómo agregar y confirmar archivos a un repositorio de 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