Squash frequent merge history from main branch into one

73 Views Asked by At

For example, I just merged master branch to my feature branch. Then someone pushed new stuff on master. So I merged again to keep up. And then someone pushed again... I merge again. How do I squash the previous merges so that two merge actions is combined to one?

How can I turn this:

o---o---A---B---C---D---E
         \       \   \   \
          F---G---H---I---J

into this:

o---o---A---B---C---D---E
         \               \
          F---G-----------J'

where J and J' contain exactly the same codes.

2

There are 2 best solutions below

2
On BEST ANSWER

This method prevents the need to re-resolve merge-conflicts by re-playing the previously-resolved changes into the merge commit.

git checkout feature
git diff master > feature.patch
git reset --hard G
git branch --move trimmed_feature
git checkout -b feature master
git merge --strategy ours trimmed_feature --no-edit
git apply feature.patch --index
git commit --amend --message "Merge branch 'master' into feature"
git branch -D trimmed_feature

We first remove the old merges to create a trimmed feature branch, then create a clean feature branch from master, merge in our trimmed feature branch using git merge --strategy ours to ignore the changes, then re-apply the previously-resolved changes from the patch.

1
On

If you have only made merge commits to feature since G as in your diagram, you can reset your branch back to that commit (using --hard to also reset your working copy files), and then redo the merge:

git checkout feature
git reset --hard G
git merge master

You can also use git rebase master instead of git merge master so that your branch contains only commits F' and G', branching from E on master.