gitサブモジュールを別のgitリポジトリに置き換えるにはどうすればよいですか?
具体的には、サブモジュールがあります。
- ある
./ExternalFrameworks/TestFramework
gitのレポにそのポイントgit@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.
1
gitサブモジュールのリモートリポジトリ
—
jiyinyiyong