Comment remplacer un sous-module git par un dépôt git différent?
Plus précisément, j'ai un sous-module:
- situé à
./ExternalFrameworks/TestFramework
ce point vers un repo gitgit@github.com:userA/TestFramework.git
- Je voudrais qu'il pointe maintenant
git@github.com:userB/TestFramework.git
.
Le problème est que lorsque je supprime le sous-module avec la méthode décrite ici , puis le rajoute à l'aide de la commande
git submodule add git@github.com:userB/TestFramework.git
J'obtiens cette erreur:
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.