Ejemplo 1: git actualiza el repositorio local desde el maestro
git pull origin master
Ejemplo 2: cómo actualizar su repositorio local
First, navigate to the desired directory:
$ cd ~/Documents/GitHub/DI-NEON-participants
And then type:
$ git remote add upstream https://github.com/NEONS...
Update local repo using git pull with the added directions of
upstream indicating the central repository and master specifying
which branch you are pulling down:
$ git pull upstream master
Ejemplo 3: cómo actualizar el repositorio local cuando hago cambios en el repositorio remoto de github
git pull origin master_or_other_branch_name
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)