I have the following branches:
master
featureA
featureB
on multiple git repositories. Development occurs on all three branches simultaneously. I need to merge featureA into featureB and finally merge featureB into master. Currently I do:
Switch to featureB and merge from featureA. Switch to master and merge from featureB. This procedure involves 2 switches and since I need to do it for approx 7 repositories it takes some time.
Is there a better way to do this using git?