git add . --- command will index any new files and staging modified files from your working tree to be committed. But it will ignore whatever you have removed files from your working tree.
git add -A/--all -- command will add any new files,modified content, and removed files from your working tree.
git add -A/--all -- command will add any new files,modified content, and removed files from your working tree.