How do I replace a git submodule with a different git repo?
Specifically, I have a submodule:
./ExternalFrameworks/TestFramework
If the location (URL) of the submodule has changed, then you can simply:
.gitmodule file to use the new URLrm -rf .git/modules/rm -rf git submodule syncgit submodule updateMore complete info can be found elsewhere: