Que es?

Es un controlador de versiones diseñado por Linus Tolvars

Herramientas

Beneficios

Comandos basicos

  • git config --global user.name "Usuario"

  • git config --global user.email "Correo"

  • git init
  • git clone /path/to/repository
  • git pull
  • git merge <branchname>
  • git branch
  • git push origin <branchname>
  • git add <filename> || *
  • git fetch origin
  • git push --all origin

Como trabajar

Evitar conflictos

Estructura 6J

Branches

  • Master -> NADIE LO TOCA
  • Development
    • EquipoN
      • n branches

Git

By Rafael Lopez

Git

  • 649