I made changes to some of my files in my local repo, and then I did git add -A which I think added too many files to the staging area. How can I delete all the
git add -A
Use "git reset HEAD ..." to unstage fils
git reset HEAD ...
ex : to unstage all files
git reset HEAD .
to unstage one file
git reset HEAD nameFile.txt