Unable to `git submodule foreach git pull`

后端 未结 1 1086
误落风尘
误落风尘 2021-01-13 22:48

This question is based on this thread.

My .gitmodules is at my Home

[submodule \"bin\"]
           path = bin
           url = git:/         


        
1条回答
  •  -上瘾入骨i
    2021-01-13 22:54

    This is normally the error made when there is no remote configured.
    (From this thread)

    It was a patch introduced to at least fixes the regression when running "git pull" in a repository initialized long time ago that does not use the .git/config file to specify where my remote repositories are.

    a better message would probably be something like:

    No default remote is configured for your current branch,
    and the default remote "origin" is not configured either.

    I think the message missed being made user-friendly in earlier passes due to being inaccessible at the time.


    So this message indicates the remote repo mentioned in .git/modules is not declared in .git/config

    From git submodule

    Submodules are not to be confused with remotes, which are meant mainly for branches of the same project;
    submodules are meant for different projects you would like to make part of your source tree, while the history of the two projects still stays completely independent and you cannot modify the contents of the submodule from within the main project.

    I believe you may have missed the step of git submodule init:

    submodule init

    Initialize the submodules, i.e. register each submodule name and url found in .gitmodules into .git/config.
    The key used in .git/config is submodule.$name.url.
    This command does not alter existing information in .git/config.
    You can then customize the submodule clone URLs in .git/config for your local setup and proceed to git submodule update; you can also just use git submodule update --init without the explicit init step if you do not intend to customize any submodule locations.

    If your remote repo (declared in .git/modules) is adequately referenced in .git/config, you should not have this error message anymore.

    Before using (pullin) submodules, the steps:

    git submodule init
    git submodule update
    

    remain necessary.

    0 讨论(0)
提交回复
热议问题