reset git stage 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: how to remove all files from staging area git
git rm --cached -r .
#unstage a single file
git rm --cached <filePath>
#unstage all staged files
git reset
git rm --cached -r .