有3个分支:
master
= 生产部门feature_1
= 基于分支master
feature_2
= 分支取决于feature_1
feature_1
完成后将分支合并到主控的正确方法是什么?通常我使用变基,但在这种情况下,它会引发很多冲突,因为feature_2
分支不断合并以feature_1
保持同步(因为它会更改feature_1
分支中的所有提交哈希)。
使用常规合并是唯一的选择吗?
或者对于这种类型的工作流程可能有更好的方法?
还有一个后续问题:
master
- 包含feature_1
feature_1
- 完成并合并到主人feature_2
- 依赖并同步feature_1
feature_3
- 新分支依赖于feature_1
和feature_2
分支
开始使用分支的正确方法是什么feature_3
?
提前致谢!