This article is reprinted from the WeChat public account "JS Daily Question", the author is Huihui. Please contact the JS Daily Question public account to reprint this article. 1. What isIn a project that uses git for version management, when a feature is developed and merged into the master branch, there are two ways:
git rebase and git merge have the same function, which is to merge the commits of one branch into another branch, but they are different in principle. The usage of both is also very simple: git merge Merge the current branch into the specified branch. The command usage is as follows:
git rebase Transplant the current branch to the specified branch or specified commit. The usage is as follows:
Common parameters include --continue, which is used to continue rebase after resolving conflicts.
2. Analysisgit merge Merge the current branch with the xxx branch through git merge, and the resulting new commit object has two parent nodes If the "specified branch" itself is a direct child node of the current branch, a snapshot merge will be generated For example, the bugfix branch is forked from the master branch as shown below: When merging the bugfix branch into the master branch, if the status of the master branch has not been changed, the history of the bugfix branch contains all the history of the master branch. So by moving the location of the master branch to the latest branch of bugfix, the merge is completed. If the history of the master branch has new commits after the bugfix branch is created, the following situation occurs: When you use git merge at this time, a new commit will be generated, and the HEAD of the master branch will be moved to the new branch, as follows: As can be seen above, the latest snapshots of the two branches and their most recent common ancestor will be merged in three ways. The result of the merge is to generate a new snapshot. git rebase Similarly, the history of the master branch has new commits after the bugfix branch was created, as follows: Through git rebase, it will become as follows: During the handover process, if a conflict occurs, you need to modify the respective conflicts as follows: After rebase, the master's HEAD position remains unchanged. Therefore, to merge the master branch and the bugfix branch As you can see from the above, rebase will find the most recent common ancestor of different branches, such as B in the figure above Then compare the current branch with the previous commits of the ancestor, extract the corresponding changes and save them as temporary files (the old commits X and Y are not destroyed, they are simply no longer accessible or usable) Then point the current branch to the target latest location D, and then apply the changes previously saved as temporary files in sequence 3. DifferenceAs you can see above, merge and rebasea are both merge history records, but they have different characteristics: merge Merging branches together will create a merge commit and link the history of the two branches together. In fact, it is a non-destructive operation. The existing branch will not be changed in any way, but it will make the history record relatively complicated. rebase Rebasing moves an entire branch onto another branch, effectively integrating all commits from that branch. The main benefit is that the historical record is clearer, and the differences are reflected on the basis of the original commits, eliminating the unnecessary merge commits required by git merge References https://zhuanlan.zhihu.com/p/361182707 https://yuweijun.github.io/git-zh/1-git-branching.html#_rebasing https://backlog.com/git-tutorial/cn/stepup/stepup1_4.html |
<<: Google and Facebook to build new submarine cable connecting Japan and Southeast Asia in 2024
>>: "5G+Industrial Internet" security capabilities and scenario-based solutions
[51CTO.com Quick Translation] In the past, networ...
Introduction We analyzed the Go native network mo...
Recently, the former fourth largest broadband acc...
Introduction: Introduction to production failure ...
[[272811]] The "unlimited data" package...
What comes to mind when you hear the word “automa...
A withdrawal movement from Chinese giants is unde...
In this article, we will talk about the wireless ...
Is there anyone who needs a Spanish VPS? GINERNET...
Recently, Afen’s colleagues have been preparing f...
On September 2 last year, ROG released a high-end...
[[439558]] This article is reprinted from the WeC...
1. Main contents of this article What types of bu...
As enterprises integrate 5G technology into their...
On July 24, 2021, at the 2021 China 5G Network In...