git command to add/stage modified files in folders only
git add -u
adds only modifications. Also consider adding files which you don't want to track to .gitignore
file.
I think what you're looking for is
git commit -a
This will let you commit changes only.