Я читал этот другой похожий вопрос, но я чувствую, что мой вопрос более простой:

Из man-страницы git pull :

git pull runs git fetch with the given parameters and calls git merge to merge the retrieved branch heads into the current branch. 

...

--[no-]recurse-submodules[=yes|on-demand|no]

This option controls if new commits of all populated submodules should be fetched and updated, too.

Чтобы поддерживать клонированное репо без подмодулей в актуальном состоянии, я использовал просто git pull . Из вышесказанного кажется, что мне просто нужно добавить --recurse-submodules чтобы также вытащить все подмодули.

Но если да, то какая польза от git submodule update --recursive git - recursive или git submodule update --remote --rebase или чего-то подобного, что меня несколько смущает, извините.

Нужно ли выполнять какие-либо команды git submodule отдельно, даже если я выполняю git pull --recurse-submodules? Все, что я хочу, - это оставаться в синхронизации с клонированным репо.

1 ответ1

0

Поскольку здесь я не получил ответов, я попытался в списке рассылки Git, и вот ответ, который я получил:

On Sun, Jun 17, 2018 at 8:41 PM Shriramana Sharma <samjnaa@xxxxxxxxx> wrote:

> Do I need to execute any `git submodule` commands separately even if I
> do `git pull --recurse-submodules`?

Ideally you don't need "git submodule" commands any more, the rest of git
is slowly converging to have builtin submodule functionality.

> All I want is to stay in sync with
> the cloned repo.

That should just work with "pull --recurse"

> But if so what is the use of `git submodule update --recursive` or
> `git submodule update --remote --rebase` or such, which is somewhat
> confusing to me I'm sorry to say.

The git-submodule command was the first command implemented that
dealt with submodules. In the beginning there was no "git pull --recurse"
but the only way was to run "git submodule update" to change
the state of submodules. Now there are better ways to do that, such as
the recursive pull.

Hope that helps,
Stefan

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .