git how to remove files from staging code example
Example 1: how to remove all files from staging area git
git rm --cached -r .
Example 2: how to remove file changes in git
git clean -df
git checkout -- .
Example 3: git remove all pdf files
git rm -r */*.pdf
Example 4: git remove staged area
$ git reset HEAD file
# Or everything
$ git reset HEAD .