How do I discard unstaged changes in Git?
How do I discard unstaged changes in Git? How do I discard changes in my working copy that are not in the index? For a specific file use: git checkout path/to/file/to/revert For all unstaged files use: git checkout — . Make sure to include the period at the end. ————————————–/OR/————————————- Another quicker way is: git stash … Continue reading How do I discard unstaged changes in Git?