“Git descarte los cambios en un archivo” Código de respuesta

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

Deseche los cambios sin programar git

#For all unstaged files in current working directory use:
git checkout -- .
#For a specific file use:
git checkout -- path/to/file/to/revert
Proud Peafowl

Git descarte los cambios en un archivo

git checkout -- file
David Diamant

Git descarte archivos no estados

git stash save --keep-index --include-untracked
Kasmin Nicko

Respuestas similares a “Git descarte los cambios en un archivo”

Preguntas similares a “Git descarte los cambios en un archivo”

Más respuestas relacionadas con “Git descarte los cambios en un archivo” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código