我想将 submodule_A 放置在 master 并将 submodule_B 放置在 new_branch。
但是,在 master 上,我可以在 repo 中看到 submodule_A 和 submodule_B。
如何将右侧分支的两个子模块分开?
谢谢您的回复!!!
注意:我之前使用过以下命令。
git submodule add -b new_branch submodule_B;
但是 submodule_B 仍然存在于 master 分支上。
当我结帐主人时,git显示
warning: unable to rmdir submodule_B
当我结帐 new_branch 时,git 显示
warning: unable to rmdir submodule_A
===============================================
例如
https://github.com/ShawnHuang/.vim/tree/master/bundle
所有插件都是我 repo 中的子模块。
在分支主机上,我想使用 ultisnips。
而且,在分支垃圾/snipmate 上,我想使用 snipmate。
我可以在 github 的不同分支上分离两个子模块。
但我不能在本地做。