how to remove files from staging area in git code example
Example 1: how to remove all files from staging area git
git rm --cached -r .
Example 2: git remove file from staging
git rm --cached FILE.NAME
git rm --cached -r .
git rm --cached FILE.NAME