2017-02-11
Almost a decade ago we switched from svn to git. Initially we kept our workflow the same (trunk-release based)
We use a lot of external services, and one thing we really wanted was to keep features from going live, when the feature depended on something the other party has not taken live yet.
We toyed with the idea of having feature toggles, but that was mighty complicated in our codebase… and templating, annotating, aspecting feature toggles was just a journey we didn’t want to take our devs on.
So since our workflow was wired in jira, we liked kanban and groovy…
We created a ‘merge just in time’ (sounds like midget) flow something like an automated feature branch flow.
git merge --no-commit --no-ff
and at the same time generate release-Notes html file
This section will be about the implementation, issues, possible plans for the mjit flow