delete staged changes git code example
Example 1: how to remove all files from staging area git
git rm --cached -r .
Example 2: remove staged files git
git reset HEAD -- path/to/file
#To reset everything
git reset HEAD -- .
Example 3: how to remove file changes in git
git clean -df
git checkout -- .
Example 4: git discard staged changes
git reset HEAD
git checkout .