Git Ignore Changes

[Solved] Git Ignore Changes | Shell - Code Explorer | yomemimo.com
Question : how to remove file changes in git

Answered by : mushy-monkey-cvodx7g0ah6g

git clean -df
git checkout -- .

Source : https://stackoverflow.com/questions/52704/how-do-i-discard-unstaged-changes-in-git | Last Update : Sat, 30 May 20

Question : git discard staged changes

Answered by : good-gaur-beunhf7twy1c

git reset HEAD
git checkout .

Source : https://stackoverflow.com/questions/16160199/how-to-quickly-undo-staged-and-unstaged-changes-in-git | Last Update : Tue, 09 Jun 20

Answers related to git ignore changes

Code Explorer Popular Question For Shell