Github
Crear un nuevo repositorio en linea de comandos git:
    
    echo "# [nombre_repositorio]" >> README.md
    git init
    git add README.md
    git commit -m "first commit"
    git remote add origin https://github.com/mig1098/[nombre_repositorio].git
    git push -u origin master
    
Subir a un repositorio existente desde linea de comandos
  
  git remote add origin https://github.com/mig1098/[nombre_repositorio].git
  git push -u origin master
  
Creando tags para versionar
    
    $ git tag -a 1.0.4 -m "my version 1.0.4"
    
Cargar tags
    
    $ git push --tag