“Como ignorar o arquivo modificado no git” Respostas de código

como desfazer um arquivo modificado no 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

Como ignorar o arquivo modificado no git

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

Respostas semelhantes a “Como ignorar o arquivo modificado no git”

Perguntas semelhantes a “Como ignorar o arquivo modificado no git”

Mais respostas relacionadas para “Como ignorar o arquivo modificado no git” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código