removing a directory from git add stage code example
Example 1: remove file from stage git
git rm --cached <file>
Example 2: remove frmo staging git
git reset HEAD -- filename
git rm --cached <file>
git reset HEAD -- filename