|
|
|
|
|
by DougBTX
1647 days ago
|
|
Yes, a good middle ground is the slightly confusingly named “GitHub flow”: https://docs.github.com/en/get-started/quickstart/github-flo... The main branch is always stable, releasable. Feature branches are branches off main, which are then merged back into main. No develop or release branches. It is like trunk based development, especially if branches are kept short and regularly rebased onto origin/main, but with a point to run PR checks before merging. |
|