I have a project like this:
main_module
-folder
--submodule_pub1
--submodule_pub2
--submodule_sec
Not everyone reaches the submodule_sec
. Is there a way for this people to check out the main_module
and all public submodules, but remove the submodule_sec
but only locally? With somehow mark it locally unchanged?
I have found this answer: https://stackoverflow.com/a/1260982/337621 My problem, that I do not want to make a commit, and I do not want to have the removed submodule as untracked change. Is there a way to do this? Which commands do I need for the example above?