Git - GitHub Workflow

Utilidades git y github

Fork-Pull request Fuente imagen: https://www.freecodecamp.org/news/how-to-fork-a-github-repository/

Fork de un repositorio

Interfaz de github

Clonar repositorio

$ git clone <url de mi repositorio>

Configurar remoto upstream


$ git remote -v
> origin  <url> (fetch)
> origin  <url> (push)

$ git remote add upstream <repositorio original>
$ git remote -v

Creación de ramas / commits

Sincronizar con original

$ git fetch upstream

Pull request

Última modificación November 20, 2022: avances (f24c17c)