you can add the .gitmodules file. basically you import other repositories to yours without wasting memory. basically your engine remains there. however, when someone installs it, they download the engine. when they finish downloading the engine, they run this command: git submodule --init --update and the repositories will be installed. to add the submodules more easily, use git submodule add -f {git repository link} {directory where it will be located} example: git submodule add -f https://github.com/Code-Guy/Bamboo Programs/Engines/bamboo
you can add the .gitmodules file. basically you import other repositories to yours without wasting memory. basically your engine remains there. however, when someone installs it, they download the engine. when they finish downloading the engine, they run this command:
git submodule --init --updateand the repositories will be installed. to add the submodules more easily, usegit submodule add -f {git repository link} {directory where it will be located}example:git submodule add -f https://github.com/Code-Guy/Bamboo Programs/Engines/bamboo