We currently have a workflow where master
is the more long-term feature release branch and numbered branches like 3.0
are for releases coming up in the next week or so.
With the above example, we are pushing several last minute changes to 3.0
that need to be merged into master. If we don't merge often, we'll wind up having master
out of date without recent changes. If we merge as we go, we have logs full of merges from 3.0
to master
.
The seemingly magical command git-rerere seems to solve this problem, but only for local topic branches that you need to update. In other words, it would work if 3.0
was only on one person's machine and not public.
Is there a way to keep master up-to-date without all the ugly merge noise? Do I understand the use of rerere?