how to move to previous commit and remove all changesin git code example
Example 1: revert unstaged changes git
git checkout -- path/to/file/to/revert
Example 2: git delete changes
git clean -df
git checkout -- .
git checkout -- path/to/file/to/revert
git clean -df
git checkout -- .