Skip to content

Instantly share code, notes, and snippets.

@djom202
Forked from fastcodecoq/GIT.UPDATE.FORKED.REPO.md
Created December 2, 2014 14:07
Show Gist options
  • Save djom202/70c2639fb21fcb850e33 to your computer and use it in GitHub Desktop.
Save djom202/70c2639fb21fcb850e33 to your computer and use it in GitHub Desktop.

Gomosoft

Como actualizar a partir del repo master nuestro repo forked

A continuación configuraremos nuestro repositorio local, para que este tenga la habilidad de actualizarce desde dos origenes (origin/master y upstream/master):

origin/master: es nuestro repositorio forked en github. upstream/master: es el repositorio master al cual le hemos hecho fork

Para conseguir lo anterior, debemos hacer los siguientes pasos:

  1. Agregamos el upstream:

git remote add upstream https://git.com/url/del/repo/master.git

  1. Verificamos que todo esta en orden:

git remote -v

Deben aparecerno lineas haciendo referencia a origin/master y upstream/master.

  1. En caso de que el paso anterior no te arroje lo esperado, entonces:

git remote rm git remote add origin https://git.com/url/de/tu/repo.git git remote add upstream https://git.com/url/del/repo/master.git

  1. Ahora verifiquemos que todo esta en orden nuevamente:

git remote -v

  1. Para hacer un pull desde el master, entonces:

git pull upstream master

Todas las acciones que vayas a hacer con el master deben llevar el upstream luego de la acción ej. git push upstream

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment