how to uncommit the last changes in git code example
Example: git revert uncommitted changes
# Revert changes to modified files.
git reset --hard
# Remove all untracked files and directories.
# '-f' is force, '-d' is remove directories.
git clean -fd