Git descartar cambios locales

Ejemplos de código

17
0

git descartar cambios locales

# Discarding local changes (permanently) to a file:
git checkout -- <file>

# Discard all local changes to all files permanently:
git reset --hard
6
0

deshacer cambios no escalonados git

git checkout -- .
3
0

git restablecer un archivo

git checkout HEAD -- my-file.txt
2
0

git desechar archivos no configurados

git stash save --keep-index --include-untracked
2
0

git deshacer todos los cambios

git reset --hard
1
0

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.

En otros idiomas

Esta página está en otros idiomas

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................