Remove git submodule
# remove git submodule
Summary
The 3-steps removal process would then be:
mv a/submodule a/submodule_tmp
git submodule deinit -f – a/submodule
rm -rf .git/modules/a/submodule
git rm -f a/submodule
a/submodule (no trailing slash)
# or, if you want to leave it in your working tree and have done step 0
- git rm –cached a/submodule 3bis mv a/submodule_tmp a/submodule
# title: {title}
# Git Submodule
pull all git submodules in repo
|
|