how do I drop changes to a file not yet staged or commited? code example
Example 1: revert unstaged changes git
git checkout -- path/to/file/to/revert
Example 2: revert unstaged changes git
git checkout -- .
git checkout -- path/to/file/to/revert
git checkout -- .