how to remove staged changes in 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: git discard staged changes
git reset HEAD
git checkout .