Comment déconcerter les changements de Git

#unstage a single file
git rm --cached <filePath> 

#unstage all staged files
git reset
Grepper