Git Submodule 使用

himg

git 的 submodule 做为一个独立的 repo, 其拥有普通 repo 所有的功能, 咱们能够彻底按照普通的 repo 管理命令来进入 submodule 中进行手动管理. 不过若是存在多个 submodule 位于同一 superproject 下时, 掌握一些 git submodule ... 命令就变得尤其重要了.git

本文列出了经常使用的一些 git submodule 管理命令, 并举出实际应用中遇到的问题及解决方案.github

submodule 介绍

在 git 仓库 superproject 的目录中使用 git submodule add https://github/HanleyLee/C 便可将 https://github/HanleyLee/C 做为一个 submodulesuperproject 依赖与管理.bash

submodule 被修改时咱们能够在 superproject 中获得通知:markdown

  • submodule 中添加了新文件:oop

    himg

  • 修改了 submodule 中的内容 (没有 new commit):fetch

    himg

  • 在 submodule 中产生了 new commit:ui

    himg

submodule 特色

repo Test 做为 submodulesuperproject 管理后:url

  • 咱们仍然能够进入 repo Test 的目录中对相关内容进行修改, 而后经过经常使用的 git 命令进行操做.
  • superproject 下能够经过 git submodule *** 命令来管理其下的全部子仓库, 使其与远程库保持同步或推送到远程库.

submodule 的版本如何被管理的 (大体思路)

添加 git submodule 的方法很简单, 使用 git submodule add <repo url> 便可. 添加完以后, 在 superproject 的目录下会产生一个 .gitmodule 文件, 文件的结构以下:spa

[submodule "C"]
    path = C
    url = git@github.com:HanleyLee/C.git
[submodule "Cpp"]
    path = Cpp
    url = git@github.com:HanleyLee/Cpp.git
复制代码

能够看到, .gitmodule 文件中标记了每个 submodulepathurl.指针

而后咱们进入 ./C:

$ cd ./C
$ ls -l
$ ls -lhia

    35107110 drwxr-xr-x   9 hanley  staff   288B May  7 21:15 .
    35107043 drwxr-xr-x  14 hanley  staff   448B May  7 20:45 ..
    35107127 -rw-r--r--   1 hanley  staff    26B May  7 19:59 .git

$ cat .git

    gitdir: ../.git/modules/C
复制代码

咱们发现 ./C/.git 居然是一个文件 (常规 git 目录中的 .git 是文件夹), 而后其内容指向了另外一个文件夹 (相似于指针), 咱们再去到那个文件夹:

$ cd ../git/modules/C
$ ls -lhia

    35107128 drwxr-xr-x  16 hanley  staff   512B May  7 21:17 .
    35107126 drwxr-xr-x   9 hanley  staff   288B May  7 19:59 ..
    35112722 -rw-r--r--   1 hanley  staff    17B May  7 21:17 COMMIT_EDITMSG
    35109064 -rw-r--r--   1 hanley  staff     0B May  7 21:44 FETCH_HEAD
    35109063 -rw-r--r--   1 hanley  staff    16B May  7 21:44 FETCH_LOG
    35112529 -rw-r--r--   1 hanley  staff    21B May  7 20:25 HEAD
    35116056 -rw-r--r--   1 hanley  staff    41B May  7 21:15 ORIG_HEAD
    35114647 -rw-r--r--   1 hanley  staff   319B May  7 20:47 config
    35107131 -rw-r--r--   1 hanley  staff    73B May  7 19:59 description
    35107132 drwxr-xr-x  15 hanley  staff   480B May  7 19:59 hooks
    35116224 -rw-r--r--   1 hanley  staff   1.7K May  7 21:17 index
    35107129 drwxr-xr-x   3 hanley  staff    96B May  7 19:59 info
    35107178 drwxr-xr-x   4 hanley  staff   128B May  7 19:59 logs
    35107159 drwxr-xr-x   9 hanley  staff   288B May  7 21:40 objects
    35107174 -rw-r--r--   1 hanley  staff   112B May  7 19:59 packed-refs
    35107146 drwxr-xr-x   5 hanley  staff   160B May  7 19:59 refs
复制代码

咱们发现这个文件夹才是 submodule 的真实 .git 文件夹, 咱们对于 submodule 的所作的 commit 信息也都保存在这里.

submodule 经常使用命令

  • git submodule: 显示全部 submodule, 等同于git submodule status

  • 添加 submodule 到现有项目

    1. Run git submodule add -b <branch> --name <name> <repo-url> <local dir>
    2. Commit both files on the superproject
  • 从当前项目移除 submodule

    1. git submodule deinit -f <submodule_path>
    2. rm -rf .git/modules/<submodule_path>
    3. git rm -f <submodule_path>
  • 复制含 submodule 项目到本地

    1. Clone the superproject as usual
    2. Run git submodule init to init the submodules
    3. Run git submodule update to have the submodules on a detached HEAD

    或者直接执行 git clone --recurse-submodules <repo-url>

  • git submodule init: 将本项目所依赖的 submodule 进行初始化

  • git submodule update: 将本项目所依赖的 submodule 更新到本地最新版本

  • git submodule update --init: 前面两个命令的合并

  • git submodule update --init --recursive: 前面三个命令的合集, --recursive 是为了保证即便 submodule 又嵌套了 sub-submodule, 也能够被执行到. 这个命令比较全面, 会常用

  • git submodule update: 更新 submodule 为 superproject 本次 commit 所记录的版本 (本地版本为旧版本的话那么就与旧版本保持同步!)

  • git submodule update --remote: 更新 submodule 为远程项目的最新版本 (更为经常使用!)

  • git submodule update --remote <submodule-name>: 更新指定的 submodule 为远程的最新版本

  • git push --recurse-submodules=

    • check: 检查 submodule 是否有提交未推送, 若是有, 则使本次提交失败
    • on-demand: 先推送 submodule 的更新, 而后推送主项目的更新(若是 submodule 推送失败, 那么推送任务直接终止)
    • while: 全部的 submodule 会被依次推送到远端, 可是 superproject 将不会被推送
    • no: 与 while 相反, 只推送 superproject, 不推送其余 submodule
  • git pull --recurse-submodules: 拉取全部子仓库 (fetch) 并 merge 到所跟踪的分支上

  • git diff --submodule: 查看 submodule 全部改变

  • git submodule foreach '<arbitrary-command-to-run>': 对全部 submodule 执行命令, 很是有用, 如 git submodule foreach 'git checkout main'

为何 superprojectgit pull 以后 submodule 没有切到最新节点?

默认状况下, git pull 命令会递归地抓取子模块的更改 (fetch), 然而, 它不会将 submodule merge 到所跟踪的分支上. 所以咱们还须要执行 git submodule update.

若是咱们想一句话解决, 那么可使用 git pull --recurse-submodule, 这个能够在拉取完 submodule 后再将其 merge 到所跟踪的分支上.

若是咱们想让 Git 老是以 --recurse-submodules 拉取, 能够将配置选项 submodule.recurse 设置为 true. 具体命令为 git config --global submodule.recurse true. 此选项会让 Git 为全部支持 --recurse-submodules 的命令使用该选项 (除 clone 之外).

git pull --recurse-submodule 会让咱们的pull命令递归地用于全部 submodule, 若是你的 submodule 数量过多的话可能会等较长时间. 这时可使用 git pull && git submodule update --init --recursive 一句话命令来只拉取更新了的 submodule 并更新到最新 commit, 使用 git config --global alias.sdiff '!'"git diff && git submodule foreach 'git diff'" 为此命令设置 alias

submodule 没有提交commit的状况下推送 superprojectcommit

若是咱们在主项目中提交并推送但并不推送子模块上的改动, 其余尝试检出咱们修改的人会遇到麻烦, 由于他们没法获得依赖的子模块改动. 那些改动只存在于咱们本地的拷贝中.

为了确保这不会发生, 咱们可让 Git 在推送到主项目前检查全部 submodule 是否已推送. git push 命令接受能够设置为 checkon-demand--recurse-submodules 参数. 若是任何提交的 submodule 改动没有推送那么 check 选项会直接使 push 操做失败.(此外还有 demand, while, no 选项, 参考前节命令列表进行理解)

为了之后方便, 咱们能够设置默认检查 git config --global push.recurseSubmodules check

为何每次 update 后 submodule 的 HEAD 状态变为了 detached?

不少人用了 git submodule 后, 都发现每次 update 以后, submodule 中的 HEAD 都是 detached 状态的, 即便本次 git checkout master 后, 下次更新仍然恢复原样, 难道就没有办法使其固定在某个 branch 上吗? 通过研究, 参考 stackoverflow 的答案, 我发现是能够解决的.

问题的关键在于 .gitmodule 的配置:

[submodule "C"]
    path = C
    url = git@github.com:HanleyLee/C.git
    update = rebase
[submodule "Cpp"]
    path = Cpp
    url = git@github.com:HanleyLee/Cpp.git
    update = rebase
复制代码

咱们须要添加 update = rebase 这行, 根据 git official 的说明

checkout
    the commit recorded in the superproject will be checked out in the submodule on a detached HEAD.

    If --force is specified, the submodule will be checked out (using git checkout --force), even if the commit specified in the index of the containing repository already matches the commit checked out in the submodule.

rebase
    the current branch of the submodule will be rebased onto the commit recorded in the superproject.

merge
    the commit recorded in the superproject will be merged into the current branch in the submodule.
复制代码

submodule 的 update 有多种选择, 默认状况下是 checkout, 其会根据 superproject 所记录的 submodulecommit 进行 checkout. 相似于 git checkout 4eda5fgrd, 这必然致使 submoduleHEAD 处于 detached 状态. 解决办法就是使用 rebase(merge 也能够), 这样当咱们对 submodule 设置了一个初始的 branch 后, 其之后都只会在这个 branch 上对远程的最新 commit 进行 rebase, 不会致使 detached 状态的产生.

submodule 的目录为 ./C/ 为例. 具体的解决步骤以下:

$ cd C/
$ git checkout main
$ cd ..
$ git config -f .gitmodules submodule.C.update rebase
复制代码

此时, 之后再使用 git submodule update 就不会有 detached 状态的产生了

另外, 在 .gitmodule 文件中也能够指定 branch, 这里指定的 branch 表示跟踪的远程仓库的分支, 若是不指定, 则默认为跟踪远程的 HEAD 所指向的 branch

参考

相关文章
相关标签/搜索