Merge the development branch into Master in Git
This article provides an overview of merging a development branch into the master branch. Often we find ourselves creating a branch outside of the master branch for development.
Once we are happy with the changes, we can merge them into master. The question is, which is the safest way to merge the two?
Git merge the development branch into master
For a simpler context, we will use the following example.
The example below shows a repository with a master branch. We will create a develop branch of master and make some changes.
We will see the safest and cleanest way to merge the develop branch with the master branch.
Some people may disagree, but the safest and cleanest way to merge develop into master is to merge master into development first.
This way you can deal with merge conflicts in your development branch. It will keep your master branch intact until you decide what action to take.
To merge our master into develop , we will first switch to the develop branch and run the command below.
$ git merge master
Output:
In our case, we have some merge conflicts. When resolving conflicts, you may come across sections that require more work.
Since master has not been touched, you can make some more edits and try to merge master into development until you are satisfied. Now we can merge development into master.
Switch to the master branch and run the command below.
$ git merge --no-ff development
The above merge could very well be fast-forwarded. The downside to this is that Git doesn't create a commit node, which means we can't track when and who did the merge.
--no-ff
We fix this
by including the flag to create the commit node .
In short, you can merge the develop branch directly with the master branch. However, you can choose the cleaner and safer route and merge master into develop first , fix merge conflicts (if any), and finally merge develop into master.
Include the flag in the last step of creating the commit node --no-ff
.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Git merge development branch into feature branch
Publish Date:2025/04/02 Views:126 Category:Git
-
Creating new branches and merging them is considered to be the most powerful tool of Git. The ability of Git to create new branches and merge them into the development code is very useful for developers working in a team environment. This f
Complete the merge after resolving conflicts in Git
Publish Date:2025/04/02 Views:63 Category:Git
-
This article describes the process of completing a merge after resolving merge conflicts in Git. We will go through the merge steps, resolve the conflicts, and complete the merge. Complete the merge after resolving conflicts in Git For a si
Using theirs option in Git merge
Publish Date:2025/03/31 Views:68 Category:Git
-
When developing software using Git, you can create different branches for different functions, but conflicts may exist between different branches. This article will explain how to use the command with theirs the -c option git merge to resol
Aborting a Git Merge
Publish Date:2025/03/31 Views:129 Category:Git
-
For example, Mario wants to pull the latest changes from the remote repository save-princess into a repository called . Mario uses git pull origin branch1 , but because the locally changed files are modified in Luigi the remote repository ,
Git 将开发分支合并到功能分支
Publish Date:2023/03/30 Views:170 Category:Git
-
本篇文章主要介绍了如何从 develop 创建一个功能分支,然后使用命令行合并它。
在 Git 中解决冲突后完成合并
Publish Date:2023/03/30 Views:113 Category:Git
-
本文描述了在解决 Git 中的合并冲突后完成合并的过程。 我们将完成合并步骤,解决冲突并完成合并。
Git 中将开发分支合并到 Master
Publish Date:2023/03/30 Views:125 Category:Git
-
本文概述了将开发分支合并到主分支中。 通常我们会发现自己在 master 分支之外创建一个分支用于开发。
Git merge-base 确定两个分支最近的共同祖先
Publish Date:2023/03/30 Views:262 Category:Git
-
本文说明了我们如何使用 git merge-base 命令在 Git 中找到最近的共同祖先提交。 当您创建一个分支或将一个分支合并到另一个分支时,这会派上用场。
Git merge 试运行
Publish Date:2023/03/30 Views:146 Category:Git
-
本文将讨论通过 git 命令解决 git merge 冲突。Git 有许多功能,开发人员可以轻松使用并解决他们的问题。 在 git 的这些功能中,合并是每个开发人员在大型团队中处理单个项目时都需要的基本方