Git subtree with a usually-recursive git repo

I created a subtree with:

git subtree add --prefix etc/theos https://github.com/theos/theos.git master --squash

but this repo is usually cloned with the --recursive flag, and I notice that some things in the repo that should be there are missing.

I did not see the --recursive flag for the subtree. How can i make it work

+5
source share

Source: https://habr.com/ru/post/1242923/


All Articles