Our project has a Git develop
branch and each developer is working on a specific feature branch that was created from that branch at some point.
So let's say I have the feature1
branch and the feature2
branch, and I need in feature2
some changes that were made in feature1
.
Is it ok to merge feature1
into develop
and then merge develop
into feature2
? What's the right way of doing this?