Как заменить подмодуль git другим репозиторием git?
В частности, у меня есть подмодуль:
- расположенный в
./ExternalFrameworks/TestFramework
этом месте, указывает на репозиторий gitgit@github.com:userA/TestFramework.git
- Я хочу сейчас указать на это
git@github.com:userB/TestFramework.git
.
Проблема в том, что когда я удаляю подмодуль описанным здесь методом , затем снова добавляю его с помощью команды
git submodule add git@github.com:userB/TestFramework.git
Я получаю такую ошибку:
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.