如何删除 Git 子模块?
顺便说一句,我有理由不能简单地做 git submodule rm whatever吗?
git submodule rm whatever
通过页面Git 子模块教程:
要删除子模块,您需要:
阶段.gitmodules更改:git add .gitmodules
git add .gitmodules
从 中删除相关部分.git/config。
.git/config
git rm --cached path_to_submodule
rm -rf .git/modules/path_to_submodule
git commit -m "Removed submodule <name>"
rm -rf path_to_submodule