Hi Dscho, > Le 23 juin 2020 à 18:33, Johannes Schindelin via GitGitGadget <gitgitgadget@xxxxxxxxx> a écrit : > > From: Johannes Schindelin <johannes.schindelin@xxxxxx> > > When `remote.<name>.branch` is not configured, `git submodule update` > currently falls back to using the branch name `master`. A much better > idea, however, is to use `HEAD`: on all Git servers running reasonably > recent Git versions, the symref `HEAD` points to the main branch. To be pedantic, it is up to the maintainer/developers to make sure that HEAD on the canonic repository indeed points to the branch that is considered the 'main' branch of the project; the Git version does not really matter IMO... I've seen plenty of repos at work that have HEAD pointing to `master` but `master` is not used, or not anymore... > Note: t7419 demonstrates that there _might_ be use cases out there that > _expect_ `git submodule update --remote` to update submodules to the > remote `master` branch even if the remote `HEAD` points to another > branch. Arguably, this patch makes the behavior more intuitive, but > there is a slight possibility that this might cause regressions in > obscure setups. > > Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> I think that's an excellent idea. However I'd be more explicit in the commit message title: submodule: fall back to remote's HEAD for missing remote.<name>.branch meta comment: I never know where is the best place to make suggestions about changing the commit message title, since I can't quote it in my replies! > --- > Documentation/git-submodule.txt | 4 ++-- > builtin/submodule--helper.c | 2 +- > t/t7406-submodule-update.sh | 16 ++++++++++++++++ > t/t7419-submodule-set-branch.sh | 7 +++++-- > 4 files changed, 24 insertions(+), 5 deletions(-) I think Documentation/gitmodules.txt (`submodule.<name>.branch` header) should also be changed to reflect the behaviour change: diff --git a/Documentation/gitmodules.txt b/Documentation/gitmodules.txt index 67275fd187..539b4e1997 100644 --- a/Documentation/gitmodules.txt +++ b/Documentation/gitmodules.txt @@ -49,9 +49,9 @@ submodule.<name>.update:: submodule.<name>.branch:: A remote branch name for tracking updates in the upstream submodule. - If the option is not specified, it defaults to 'master'. A special - value of `.` is used to indicate that the name of the branch in the - submodule should be the same name as the current branch in the + If the option is not specified, it defaults to the remote 'HEAD'. + A special value of `.` is used to indicate that the name of the branch + in the submodule should be the same name as the current branch in the current repository. See the `--remote` documentation in linkgit:git-submodule[1] for details. > diff --git a/Documentation/git-submodule.txt b/Documentation/git-submodule.txt > index c9ed2bf3d5..b20f85e622 100644 > --- a/Documentation/git-submodule.txt > +++ b/Documentation/git-submodule.txt > @@ -284,7 +284,7 @@ OPTIONS > `.gitmodules` for `update --remote`. A special value of `.` is used to > indicate that the name of the branch in the submodule should be the > same name as the current branch in the current repository. If the > - option is not specified, it defaults to 'master'. > + option is not specified, it defaults to 'HEAD'. Just to be extra clear (it's easy to get confused with submodules!) I'd say explicitly: If the option is not specified, it defaults to the remote 'HEAD'. > > -f:: > --force:: > @@ -322,7 +322,7 @@ OPTIONS > the superproject's recorded SHA-1 to update the submodule, use the > status of the submodule's remote-tracking branch. The remote used > is branch's remote (`branch.<name>.remote`), defaulting to `origin`. > - The remote branch used defaults to `master`, but the branch name may > + The remote branch used defaults to `HEAD`, but the branch name may Same thing here: The remote branch used defaults to the remote `HEAD`. > be overridden by setting the `submodule.<name>.branch` option in > either `.gitmodules` or `.git/config` (with `.git/config` taking > precedence). Also, you seem to have missed the `master` reference in the description of the 'set-branch' subcommand. Something like this would do, I think: diff --git a/Documentation/git-submodule.txt b/Documentation/git-submodule.txt index c9ed2bf3d5..8cf5831a72 100644 --- a/Documentation/git-submodule.txt +++ b/Documentation/git-submodule.txt @@ -183,7 +183,7 @@ set-branch (-d|--default) [--] <path>:: Sets the default remote tracking branch for the submodule. The `--branch` option allows the remote branch to be specified. The `--default` option removes the submodule.<name>.branch configuration - key, which causes the tracking branch to default to 'master'. + key, which causes the tracking branch to default to the remote 'HEAD'. set-url [--] <path> <newurl>:: Sets the URL of the specified submodule to <newurl>. Then, it will The rest of the patch looks good. Cheers, Philippe.