I have a git repo with a gitlab remote. Inside of that repo I have a submodule folder connected to github. How can I make the outer repo treat the submodule like it was just another folder inside of it?
Right now when i make changes in the inner repo I don't see specific changes in the outer repo when running git status, allI see is that there have been new commits or there is modified content. This seems like the normal submodules behavior. On gitlab, it is not possible to see the files in the submodule since they are in the private github repo. This is my biggest issue since I need others to see the content of that submodule on gitlab. Submodules might not be the way to go here but how can I make the inner folder and all files in there visible in the outer repo while staying connected to both remotes?
I saw that in order to integrate a different git repo into another, submodules are suggested but it seems like there is no way to treat a submodule like a normal folder.
I saw this but I don't want to remove the connection to the private github repo.