У меня есть два файла, скажем FrontEnd и BackEnd в двух отдельных репозиториях git.
Я хочу объединить их в один репозиторий и скопировать их в совершенно новое хранилище.
Я получаю эту ошибку:
hint: You've added another git repository inside your current repository.
hint: Clones of the outer repository will not contain the contents of
hint: the embedded repository and will not know how to obtain it.
hint: If you meant to add a submodule, use:
hint:
hint: git submodule add <url> BackEnd
hint:
hint: If you added this path by mistake, you can remove it from the
hint: index with:
hint:
hint: git rm --cached BackEnd
hint:
hint: See "git help submodule" for more information.
И файл BackEndне загружает.
- Как я могу загрузить, как есть (потеря всех предыдущих изменений)
- Каковы плюсы и минусы по сравнению с использованием субмодуля?