“Archivo de restablecimiento de git” Código de respuesta

Git descarte los cambios locales

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

# Discard all local changes to all files permanently:
git reset --hard
Friendly Fox

Cómo deshacer un archivo modificado en GIT

# If you want to revert the changes only in current working directory
git checkout -- .

# discard anything (note: you have to be in the directory
# where all of the changes are located)
# or you can use the command on line 9, you can discard anything
# on the repo
git checkout -- *
git checkout -- :/

# or if you check the git status message after modifying a file 
# there is this command 
git restore <file>
fast_and_the_curious

Restablecer el cambio de restablecimiento de git en un archivo

# undo local changes to specific file
git checkout -- file
Old-fashioned Ox

Archivo de restablecimiento de git

git checkout HEAD -- my-file.txt
Eranot

Deshacer los cambios sin organizar git

git checkout -- .
Modern Moth

Restablecer el archivo Git

$ git reset foo/bar.txt
$ git checkout foo/bar.txt
Dangerous Dormouse

Respuestas similares a “Archivo de restablecimiento de git”

Preguntas similares a “Archivo de restablecimiento de git”

Más respuestas relacionadas con “Archivo de restablecimiento de git” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código