git clear staging code example
Example 1: how to remove all files from staging area git
git rm --cached -r .
Example 2: remove file from stage git
git rm --cached <file>
Example 3: git remove staged area
$ git reset HEAD file
# Or everything
$ git reset HEAD .
Example 4: git remove from staging
git reset HEAD <file>