Come si sostituisce un sottomodulo git con un repository git diverso?
Nello specifico, ho un sottomodulo:
- situato in
./ExternalFrameworks/TestFramework
quel punto a un repository gitgit@github.com:userA/TestFramework.git
- Mi piacerebbe che ora puntasse
git@github.com:userB/TestFramework.git
.
Il problema è che quando elimino il sottomodulo con il metodo descritto qui , lo aggiungo di nuovo utilizzando il comando
git submodule add git@github.com:userB/TestFramework.git
Ottengo questo errore:
A git directory for 'ExternalFrameworks/TestFramework' is found locally with remote(s):
origin git@github.com:userA/TestFramework.git
If you want to reuse this local git directory instead of cloning again from
git@github.com:userB/TestFramework.git
use the '--force' option. If the local git directory is not the correct repo
or you are unsure what this means choose another name with the '--name' option.