Bagaimana cara mengganti submodul git dengan repo git yang berbeda?
Secara khusus, saya memiliki submodul:
- terletak di
./ExternalFrameworks/TestFramework
titik itu ke repo gitgit@github.com:userA/TestFramework.git
- Sekarang saya ingin menunjukkannya
git@github.com:userB/TestFramework.git
.
Masalahnya adalah ketika saya menghapus submodule dengan metode yang dijelaskan di sini , lalu menambahkannya kembali menggunakan perintah
git submodule add git@github.com:userB/TestFramework.git
Saya mendapatkan kesalahan ini:
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.