|
|
|
|
|
by svalorzen
1813 days ago
|
|
This is what I also do. I rebase all my branches and merge them with a no-fast-forward commit, which does not introduce any changes itself, but can be used to document the overall changes of a specific feature. The best part about this workflow is that history remains linear; it is very easy to track the history of changes (since there is never a "branch" with changes on both sides) while at the same time you keep the ability to visualize where the start/end points for a given feature were. It also works with nested branches! You simply create a new branch2 from your branch1, and then merge --no-ff branch2 to branch1. |
|