Ejemplo 1: git descarta cambios locales
# Discarding local changes (permanently) to a file:
git checkout -- <file>
# Discard all local changes to all files permanently:
git reset --hard
Ejemplo 2: eliminar cambios locales git
git fetch # will fetch the latest changes on the remote
git reset --hard origin/master # will set your local branch to match the representation of the remote just pulled down.
Ejemplo 3: deshacer cambios sin etapas git
git checkout -- .
Ejemplo 4: revertir cambios sin etapas git
git checkout -- path/to/file/to/revert
Ejemplo 5: borrar cambios locales en git
git checkout .
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)