Closed trusktr closed 6 months ago
What file needs to be uploaded? The files changed doesn't show anything.
np, i deleted the sub module and added it again. Now I have the _res folder listed as a change item that I can stage & commit which didn't happen before. Hopefully this will make things work.
Yep, that worked! Now I can clone, git checkout ossos_next
branch, and git submodule update --init
works as expected (that last part didn't work before)
The file also needed to be committed. Without this other people cloning recursively would not get the repo, and running
git submodule init && git submodule update
(to turn enable the submodule and then pull the content from its commit, for which the shortcutgit submodule update --init
exists) would still not get the res repo. Without this users would have to rungit add <repo_url> prototypes/_res
to manually add the module again (that's how I was able to add the needed file)