pic related. What is this and how do I resolve it? Of the many repos I pull from, only mpc-hc does this periodically when a new submodule is added. I doubt it's doing this on the primary maintainer's local machine. Build errors related to that as well.
>>107039052the maintainer forgot to push a branch on the submodule but committed the submodule ref to the main project. my team uses a ~100 submodule metarepository and this happens occasionallytry to "git submodule update --remote"
>>107039229Thanks, that did something. After --remote, had to do git submodule sync --recursive, then my regular macro for "git submodule update --init --recursive" worked.Appreciate it.