how to remove git file from staging code example
Example 1: how to remove all files from staging area git
git rm --cached -r .
Example 2: git remove from staging
git reset HEAD <file>
git rm --cached -r .
git reset HEAD <file>