S
S
stanlee2015-08-25 12:12:17
PHP
stanlee, 2015-08-25 12:12:17

What is the best way to post releases when working with the git flow model?

I have a php project.
Now, when a task appears, the developer creates a new branch and does his task there.
Then it is merged into the develop branch, checked and only then merged into master.
The problem is that when a lot of completed tasks accumulate in develop, they all merge into master in a batch and this is not very convenient.
Is there some kind of web interface for sorting out all this, so as not to sit in the source tree to watch which files from where and where?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
U
urmaul, 2015-09-03
@urmaul

How about merging into master not a bunch, but each branch separately?

R
Roman Bulgakov, 2015-09-08
@Deroy

I won’t say anything about the interface... probably any git manager that draws a network of commits in the form of a tree / graph will do
, but about releases and problems with understanding what came from - so that there are fewer commits and the history is clearer - you can try using --squash when merging features in dev - then you will have one commit for each completed feature.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question