git remove from staging but keep file 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
Example 3: unstage staged files git
git reset HEAD file_path
Example 4: git remove from staging
git reset HEAD <file>