Saltar al contenido

ejemplo de código de diferencia entre git pull y git merge

Posterior a indagar en diferentes repositorios y páginas al final nos hemos encontrado la respuesta que te compartiremos a continuación.

Ejemplo 1: diferencia entre git pull y git merge

// If you want to bring your local repository up to speed with a 
// remote repository use below command. It is the same as 
// (git fetch + git merge)
git pull

// The below command is going to import commits from a remote repo 
// without merging them, which gives you the opportunity to review 
// them before integrating.
git fetch

Ejemplo 2: diferencia entre extracción y solicitud de extracción

If you use git pull, you pull the changes from the remote repository
into yours.

If you send a pull request to another repository, you ask their 
maintainers to pull your changes into theirs (you more or less ask
them to use a git pull from your repository).

Reseñas y valoraciones de la guía

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *