How To Ignore Modified File In Git

[Solved] How To Ignore Modified File In Git | Shell - Code Explorer | yomemimo.com
Question : how to undo a modified file in git

Answered by : daniel-hemmati

# 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>

Source : https://stackoverflow.com/questions/5807137/how-to-revert-uncommitted-changes-including-files-and-folders | Last Update : Tue, 31 Mar 20

Question : how to ignore modified file in git

Answered by : cooperative-chinchilla-tgpgbrfig4fp

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

Source : https://stackoverflow.com/questions/655243/ignore-modified-but-not-committed-files-in-git | Last Update : Sat, 13 Feb 21

Answers related to how to ignore modified file in git

Code Explorer Popular Question For Shell