“Cómo ignorar el archivo modificado en git” 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

Cómo ignorar el archivo modificado en git

git update-index --assume-unchanged dir-im-removing/
Cooperative Chinchilla

Respuestas similares a “Cómo ignorar el archivo modificado en git”

Preguntas similares a “Cómo ignorar el archivo modificado en git”

Más respuestas relacionadas con “Cómo ignorar el archivo modificado en git” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código