tags:

views:

57

answers:

1
+2  A: 

You could try

  • in master reset to latest commit before merge
  • switch to branch
  • rebase branch on master
  • switch to master
  • merge branch
Hotsyk
Basically what I did with git rebase --onto master~2^1 master~2 master
Vince