para subir:
git init
$ git add (file or folder)
Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.
git commit -m "número commit"
git remote add origin remote (repository URL)
git push origin master
git init
si es necesario ejecutar el siguiente comando para sumar los archivos o carpetas individualmente.
git add (file or folder)
git commit -m "número commit"
git push origin master
git pull https://github.com/torvicv/docemonos.git(remoteName) master(branchName)