# Iniciamos el repositorio
git init
# Lo enlazamos al que hemos creado
git remote add origin https://github.com/usuario/repositorio.git
# Añadimos todos los archivos
git add .
# Guardamos la version
git commit -m "VERSION"
# Cargamos el contenido en el repositorio
git push -u origin master