Git 合并仓库
在与多个团队成员一起为每个团队拥有单独的仓库的项目上工作时,在某个时间,我们会遇到一种情况,我们希望将这些单独的仓库组合到一个主仓库中,以使用单个仓库部署所有工作。
努力将各种仓库合并为一个,甚至保留其宝贵的提交历史似乎很困难,但实际上并非如此。在本文中,我们将逐步详细说明如何将单独的仓库合并到一个主仓库中。
在 Git 中合并仓库的步骤
假设我们有三个仓库:repo A
和 repo B
,然后我们有一个 repo Z
,我们想要合并 A
和 B
。让我们假设我们目前在 repo Z
目录中的另一件事,我们想要将这两个仓库 A
和 B
合并为一个 Z
。
让我们再假设一件事; repo Z
是仓库的主分支。
-
添加远程 URL
在这一步,我们将运行
git remote add
命令,属性为f
;这将为repo A
添加一个远程,我们将把它命名为repo A
。``bash
git remote add -f remote-A. 使用选项 `-f`,在设置远程信息后立即处理命令 `git fetch <name>`。 我们将遵循上述 `repo B` 的相同程序。 ```bash git remote add -f remote-B <repo-B-URL>
-
合并文件和文件夹
现在,我们将使用以下命令把
repo A
的文件合并到当前分支(repo Z
)。``bash
git merge remote-A/master –allow-unrelated-histories这里我们将添加 `--allow-unrelated-histories`,这样 Git 就会允许合并不相关的历史。 同样的过程将在 `repo B` 上重复,使用以下命令。 ``bash git merge remote-B/master --allow-unrelated-histories
如果在运行上述命令后出现一些冲突,我们将解决它们,然后成功提交合并。
-
查看提交历史
我们将运行以下命令
git log
来查看合并后的提交历史,这将是我们查看各仓库所有合并历史的最后一步。``bash
git log
Abdul is a software engineer with an architect background and a passion for full-stack web development with eight years of professional experience in analysis, design, development, implementation, performance tuning, and implementation of business applications.
LinkedIn