Git Tower 14
This update allows you to create custom Git workflows, enabling you to define and enforce the exact workflow that meets your project’s needs.
[…]
The first step is to define your core branches, i.e., your “trunk” (e.g.,
main
,master
) and “base” (e.g.,develop
,dev
) branches so that you can establish the foundational structure of your repository. […] For each topic branch type, you can set specific branch prefixes (e.g.,feature/
,hotfix/
). This clarifies intent and ensures consistency across your team and can be used for automated checks and organization.[…]
Next, you can take full control of how changes flow through your branches. You can now define distinct downstream merge strategies (merging the parent into your topic branch to keep it up to date) and upstream merge strategies (merging a branch into its parent to finalize topic branches).
Previously: