DEV Community

Dimitrios Desyllas
Dimitrios Desyllas

Posted on • Updated on

Git Flow How I can ovewrite a branch with another one?

Usually I have to continue a feature that a coleague of mine has done or sometimes I;ll have to be based upon code that has not yet code-reviewed and released.

Therefore I needed to follow these steps to continue my development whilst the code is in Code review.

While I am developing I want to continue my work into another branch but base my work instead from master into another branch. For deployment management and workflow I use git flow.

In my case I created a feature branch:

git flow feature start MYPROJECT_2311

But the feature branch…

Top comments (0)