Tag: rebase
-

Rebase vs merge in git
Merge: When you perform a merge, you’re combining the changes from one branch into another. This creates a new commit on the target branch that has two parent commits: the previous commit from the target branch and the latest commit from the source branch. This results in a merge commit that captures the history…