美文网首页
git如何引用子模块

git如何引用子模块

作者: CodingCode | 来源:发表于2020-11-05 03:00 被阅读0次

如何创建子模块

使用场景:
在一个repository里面如何引入另一个repository的代码?

  1. 一种方法是,手动clone出来;比如在build的时候,一次clone出两个repository,按目录组织好就行。
  2. 另一种方法是,直接在一个repository里面指定需要依赖的repository;这就是本文介绍的子模块概念。

步骤

  1. 在repository根目录下面执行
$ git submodule add <depend-module-url>/<depend-module-name>.git

那么就会在当前目录下面创建一个子目录<depend-module-name>
如果需要放不同的目录下面,即非根目录,而是其他比如子目录,则:

$ git submodule add <depend-module-url>/<depend-module-name>.git <sub-directory>/<new-module-name>
  • 目录<sub-directory>,和<sub-directory>/<new-module-name>不需要事先存在,git submodule add会创建。
  • 名称<new-module-name>可以和<depend-module-name>一样,也可以不一样;但通常用一样,便于阅读。
  1. 结果是什么
  • 根目录下生成一个.gitmodules文件,包含如下内容:
[submodule "<sub-directory>/<new-module-name>"]
    path = <sub-directory>/<new-module-name>
    url = <depend-module-url>/<depend-module-name>.git
  • 创建了目录: <sub-directory>/<new-module-name>
  • repository <depend-module-url>/<depend-module-name>.git的代码被clone出来在目录<sub-directory>/<new-module-name>下

注意:
文件.gitmodules和空目录<sub-directory>/<new-module-name>(不含下面的repository内容)会被作为一个commit需要提交,这样以后clone出来的时候才会保留。此时可以通过git status查看到这两个文件的状态。

  1. 后续如果迁出代码
  • git clone <parent-module-url>/<parent-module-name>.git
    则<sub-directory>/<new-module-name>会迁出一个空目录,没有内容

  • git clone --recursive <parent-module-url>/<parent-module-name>.git
    则<sub-directory>/<new-module-name>会同步迁出一个<depend-module-url>/<depend-module-name>.git的完整代码。

需要注意的是:

  1. git submodule add 是基于子模块的最新的commit的。
    也就是说parent repository将会一直指向在执行git submodule add 时刻submodule分支上的最新commit;此后在submodule上提交的commit不会被parent repository使用git clone --recursive更新下来(必须手动更新),即将永远指向给定的commit。
  2. 那么如何更新submodule呢
cd [submodule directory]
git checkout master
git pull

# commit the change in main repo
# to use the latest commit in master of the submodule
cd ..
git add [submodule directory]
git commit -m "move submodule to latest commit in master"

# share your changes
git push

相关文章

  • git如何引用子模块

    如何创建子模块 使用场景:在一个repository里面如何引入另一个repository的代码? 一种方法是,手...

  • git子模块的使用

    git子模块的使用 git子模块可以用于项目包含另一个项目的情况,也许是第三方库或被多个项目引用的基础框架。此次学...

  • Git子模块引用外部项目

    Git子模块(submodule)简介 经常有这样的事情,当你在一个项目上工作时,你需要在其中使用另外一个项目。也...

  • git submodule

    git 子模块 常用命令:初始化子模块 git submodule init 增加子模块 git submodul...

  • CommonJS

    模块规范 CommonJS模块规范主要分为三部分:模块引用、模块定义、模块标识。 模块引用 var math = ...

  • go 私有模块设置

    go开发中很多功能需要做成模块方便团队项目引用,避免重复开发,这时候就需要把模块上传到git仓库,其他项目只需要通...

  • node.js之模块机制

    什么是模块 Node.js的模块遵循Common.js的模块规范,包括模块引用,模块定义和模块标识。 模块引用 模...

  • Ansible常用模块

    git模块 简介 此模块用于checkout远程git仓库中的文件 使用要求(在执行模块的主机上) git>=1....

  • Javascript模块规范

    [Toc] 1. CommonJS模块规范 模块引用 模块定义 exports是module.exports的引用...

  • 模块引用

    模块引用 内部模块引用,举例就是我在1.py中创建了一个函数或者定义了一些变量,然后想在2.py中进行引用。为了保...

网友评论

      本文标题:git如何引用子模块

      本文链接:https://www.haomeiwen.com/subject/cnznvktx.html