:
Last modified: Sep 14, 2023

Branching

Branching and Pull Requests

Principles We use scaled trunk-based development. This ensures the codebase is always releasable on demand and helps to make Continuous Delivery a reality. Code is checked in using short lived feature branches and pull requests (PR). Review is always done by someone else than the author Scaled Trunk Based Development Read more about scaled trunk based development here. A source-control branching model, where developers collaborate on code in a single branch called “trunk” (master), resist any pressure to create other long-lived development branches by employing documented techniques. »