Alain Mauri

March 8, 2021

Thoughts about GIT merge and GIT rebase

Both merge and rebase offer the same service which is incorporating commits from one branch into another, but how is this done? Merge Given the following branches A---B---C Release / D---E---F---G Development And given that the current branch is Development, when you perform a merge: git merge Release The merge will replay all the chan...
Read more