为胆小的人使用 git 中的子模块

using submodules in git for the timid

我在一个层次很少的项目中工作,每个层次都是独立的子项目。

看起来像这样:

[ Project C ] [ Project D ]  C and D uses B and therefore A
[ Project B ]                B has all source code in a and adds more
[ Project A ]                

将上游设置到父存储库并发布 git pull upstream 可以很好地从上层项目获取更改。

但是,在影响与父层共享代码的 C 错误修复的情况下,我将如何推送提交?

如果我从项目A发出git pull project-D,它也会合并所有在该层添加的源代码。

我也考虑过使用sub-treessubmodules,但看起来还是很复杂

* I also considered using sub-trees or submodules, but it still looks complicated.*

这正是您需要使用的。让我解释一下它是多么简单而不是那么复杂

Submodules allow foreign repositories to be embedded within a dedicated subdirectory of the source tree, always pointed at a particular commit.


git submodule

像目前一样将您的大项目分解为子项目。
现在将每个子项目添加到您的主项目中:

git submodule add <url>

将投影添加到您的存储库后,您必须对其进行初始化和更新。

git submodule init
git submodule update

Git 1.8.2 添加了新选项 --remote

git submodule update --remote --merge

fetch每个子模块中来自上游的最新变化, merge them incheck out子模块的最新版本。

正如the docs描述的那样:

--remote

This option is only valid for the update command. Instead of using the superproject’s recorded SHA-1 to update the submodule, use the status of the submodule’s remote-tracking branch.

这相当于运行 git拉入每个子模块。


However, how would I push a commit in the scenario of bug fix in C which affects the code shared with the parent layers?

再次说明:使用子模块会将您的代码作为其内容的一部分放入主项目中。将其放在本地文件夹内或将其作为子模块的一部分之间的区别在于,在子模块中,内容被管理(提交)到不同的独立存储库。


这是子模块的图示 - 另一个项目中的项目,其中每个项目都是一个独立的项目。


git subtree

Git 子树允许您插入任何存储库作为另一个存储库的子目录

submodule 非常相似,但主要区别在于代码的管理位置。在子模块中,内容被放置在一个单独的 repo 中并在那里进行管理,这使您也可以将其克隆到许多其他 repo。

subtree 将内容作为根项目的一部分进行管理,而不是在单独的项目中。

与其写下如何设置它和了解如何使用它,您可以简单地阅读这个优秀的 post,它会解释这一切。

https://developer.atlassian.com/blog/2015/05/the-power-of-git-subtree/