详解git submodule HEAD detached 的问题
程序员文章站
2022-03-30 18:48:13
在使用git submodule 的时候,常常会遇到 执行完以下操作后发现 子仓库的head 指针处于游离状态 git clone xxxxx.git git submodule update -...
在使用git submodule 的时候,常常会遇到 执行完以下操作后发现 子仓库的head 指针处于游离状态
- git clone xxxxx.git
- git submodule update --init
然后切换到子仓库,查看当前分支的状态如下
原因是之前同事在子仓库中修改并提交后,没有在 父仓库中更新子仓库的最新提交记录
正常情况下,修改子仓库的内容并在子仓库提交后会在父仓库执行 git diff
会有如下输出
解决git submodule head detached的方法:
重新建立submodule,加入时使用-b参数,使得母项目追踪子项目的指定branch(否则默认不追踪):
git submodule add -b <branch> <repository> [<submodule-path>] git submodule update --remote
简单的一行命令递归修复所有子项目的detached head(其中默认都追踪子项目的master branch):
git submodule foreach -q --recursive 'git checkout $(git config -f $toplevel/.gitmodules submodule.$name.branch || echo master)'
参考
why is my git submodule head detached from master?
git submodules best practices
到此这篇关于详解git submodule head detached 的问题的文章就介绍到这了,更多相关git submodule head detached内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!