Git Remove Submodules
2022-04-06 16:10:05
One-minute read
- Remove the submodule entry from
.git/config
git submodule deinit -f path/to/submodule
- Remove the submodule directory from the superproject’s
.git/modules
directory
rm -rf .git/modules/path/to/submodule
- Remove the entry in
.gitmodules
and remove the submodule directory located atpath/to/submodule
git rm -f path/to/submodule