git drop code example
Example 1: remove the commit from local
git reset --soft HEAD~1
Example 2: how to remove file changes in git
git clean -df
git checkout -- .
Example 3: revert unstaged changes git
git checkout -- path/to/file/to/revert
Example 4: clear local changes in git
git checkout .