unstage staged changes git code example
Example 1: how to remove all files from staging area git
git rm --cached -r .
Example 2: how to remove file changes in git
git clean -df
git checkout -- .
Example 3: revert unstaged changes git
git checkout -- .