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
It is very simple:
To check the current status of any file in the current dir, whether it is staged or not:
git status
Staging any files:
git add . for all files in the current directory
git add .
git add for specific file
git add
Unstaging the file:
git restore --staged