I read much about how awful the git submodule is supposed to be, but I am not sure if that is just the groaning of people who feel it limits or if it has serious issues (especially concerning my use case).
I just want to include different repos into my repo like this
website/
libs/
js/
fs-slides [external]
fs-dialog [external]
and have to possibility to update those repos easily. As far as I understand there is no easy possibility of including just one file from a repo, right? (But that's okay.)
Should I use submodules for this?
Or are there any problems with it? Or is subtree much easier?