git delete staged changes 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: remove file from stage git
git rm --cached <file>
Example 4: git discard staged changes
git reset HEAD
git checkout .