“Jak zignorować zmodyfikowany plik w git” Kod odpowiedzi

Jak cofnąć zmodyfikowany plik w 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

Jak zignorować zmodyfikowany plik w git

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

Odpowiedzi podobne do “Jak zignorować zmodyfikowany plik w git”

Pytania podobne do “Jak zignorować zmodyfikowany plik w git”

Więcej pokrewnych odpowiedzi na “Jak zignorować zmodyfikowany plik w git” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu