How do you add git revisioned files to a different git?
Current Setup:
env/A.txt
env/.git <-- parent git
env/docs
env/docs/B.txt
env/docs/.git <-- child git
While inside env
directory I want to be able to add all files to parent git including the ones from child git. For some reason I am not able to do that. All files that are inside env/docs/B.txt
are not adding to parent git. What to do?