GitLab CEO here. I agree that GitFlow is needlessly complex and that there should be one main branch. The author advises to merge in feature branches by rebasing them on master. I think that it is harmful to rewrite history. You will lose cherry-picks, references in issues and testing results (CI) of those commits if you give them a new identifier. The power of git is the ability to work in parallel without getting i…
A big annoyance is UI: * most git UI don't provide for branch filtering or --left-only (which hides "accessory"/"temporary" merged branches unless explicitly required) * developers won't necessarily care for correct merge order, breaking "left-only" providing a mainline view The end result is, especially for largeish projects, merge-based workflows lead to completely unreadable logs.
Re: GitFlow considered harmful
#341I'm not sure I completely understand. But it would be great if you can send small merge requests to GitLab to try to improve these things.