I have branches develop
and upgraded
that I want to merge. Branch upgraded
comes from develop
but there are about 50 new commits (mainly merges with other branches) on it and much more changes in upgraded
. So I want to merge develop
into upgraded
sequentially (commit by commit), because there are API changes which need to be updated and merge conflicts. But when I do it by simply merging commits from develop
it creates new connection for every commit on the graph. I don't really want 50 unnecessary graph paths...
How can I avoid this crazy graph connections? Most gladly using Atlassian Sourcetree GUI.