remove file from working aerea git code example
Example 1: how to unstage changes in git
#unstage a single file
git rm --cached <filePath>
#unstage all staged files
git reset
Example 2: remove frmo staging git
git reset HEAD -- filename
#unstage a single file
git rm --cached <filePath>
#unstage all staged files
git reset
git reset HEAD -- filename