Does anyone know how its possible to pull add the contents of a submodule in GIT into the main repository, but still allow the submodule to be updatable if you perform a git pull request within the submodule?
This way, when you upload changes of your repository then your contents will be uploaded alongside all of the contents of the submodule. But if the submodule contains updates then it can be updated directly.
Any ideas?
Here’s a tool that does exactly this without the need to use submodules. It contains a manifest file where you can identify the .git repositories available via http and then have the tool download them and add them to your repo. None of the downloaded repos will be picked up as submodules within the parent git application.
https://github.com/yearofmoo/Git-Depend