Pull

Fetch and merge changes on the remote server to your working directory

El comando git pull se usa para buscar y descargar contenido de un repositorio remoto e inmediatamente actualizar el repositorio local para que coincida con ese contenido.

A continuación los comandos principales más utilizados.

👉 Pull Changes to the local machine

git pull
git pull <remote>

👉 Fetches the remote content but does not create a new merge commit

git pull --no-commit <remote>

👉 Integrate the remote branch with the local

git pull --rebase <remote>

Last updated