Pergunta

We're using GitLab for our project and we think it's great. We're also using git flow to manage the changes in feature, develop, master branches.

Can you use the Merge Request build in GitLab to manage the branches in git flow style?

Meaning when accepting a Merge Request for a release branch, it will merge the release branch into master AND into develop.. Or should we always use git flow on our local machines to accept the Merge Requests.

Foi útil?

Solução

Like this issue 1628 illustrates, it is best to use GitLab to publish (push) branches, then to rely on a specific GitLab feature related to a particular workflow like git-flow.

So the natural approach is to limit those git-flow features to the local clones, and push any branch you want to GitLab once the merge request is resolved.

Outras dicas

By now, there is something called GitLab Flow, "a clearly defined set of best practices".

Cited from the linked source:

It combines feature-driven development and feature branches with issue tracking.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top