Git

https://git-scm.com/

      
        $ git init
        
        $ git clone https://github/ligbit2/
        
        $ git config
        
        git config --list

        $ git config user.name
        $ git config user.name "Nombre Apellido"
        $ git config --global user.name "Nombre Apellido"
        
        $ git config user.email
        $ git config user.email usuario@ejemplo.com
        $ git config --global user.email usuario@ejemplo.com
        
        $ git status
        
        $ git add -A
        $ git add .
        
      
        
        $ git log
        
        $ git diff
Rojo Linea que se fue
Verde Linea que se agrego

$ git push origin master

$ git pull origin master

$ git branch rama

$ git checkout rama

        
         git commit -m "Se realizaraon estos cambios"

        git remote
        
        git remote -v
        
        git remote add nombre url
        git remote add origin https://github.com/usuario/proyecto.git
        
        git push origin master