I'm adding folders to a project... Some of these folders are git projects.
Generally speaking, I should be adding "submodules"... but, for this project, I want to ignore the fact that these folders are submodules.
How do you just add the files even though they are a "submodule"?
I just want to 'git add -A', commit "message" and push. I want to keep the .git folders - and not add/commit the .git folders - and effectively ignore the "submodule" portion.
Folder:
YYY
 |- .git  <-- Project .git
 |-  ZZZ  <-- Project ZZZ
      |- .git <-- Don't add this
      |- (project files) <-- do add these
 |-  QQQ  <-- just another folder with..
      |-  MMM  <-- Project MMM inside
           |- .git <-- Don't add this
           |- (project files) <-- do add these
 |-  (project files)
