I'm trying to make a private mono-repo, with sub packages that have public gits. At no point do I have any intent of modifying the code outside of my mono-repo, so I have no need for submodules. In fact, they're the very thing I'm trying to avoid at all costs.
I don't want to delete the .gits for any of the packages in my mono-repo, and I don't want to do anything fancy.
How can I simply disable submodule functionality in git?
I don't ever want anything to be considered a submodule. Never have, and probably never will.
I've tried searching for some .submodule folder or something in the git. I found none. There appears to be no settings to get rid of these things.
I've found this link: un-submodule a git submodule
Unfortunately, these solutions all have to do with flattening submodules, and none of them cover a way to just disable the feature entirely.