“Comment ignorer le fichier modifié dans git” Réponses codées

Comment annuler un fichier modifié dans 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

Comment ignorer le fichier modifié dans git

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

Réponses similaires à “Comment ignorer le fichier modifié dans git”

Questions similaires à “Comment ignorer le fichier modifié dans git”

Plus de réponses similaires à “Comment ignorer le fichier modifié dans git” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code