I want to add all files no matter what: whether it is deleted, created, modified, untracked, etc? I just don\'t want to git add ALL my files EVERY T
A pretty simple fix for me - I had opened the Git Bash in a subdirectory of the project.
Open the Bash and doing the commands in the root directory fixed this problem; git add -A . worked as expected.
git add -A .