문제

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.

도움이 되었습니까?

해결책

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.

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top