Skip to content

Latest commit

 

History

History
61 lines (36 loc) · 2.34 KB

supported-branching.md

File metadata and controls

61 lines (36 loc) · 2.34 KB

Supported Branching Models

Trunk Based Development

Committing Straight to the Trunk

Short-Lived Feature Branches

Continuous Integration

Continuous Deployment/Release

GitHub Flow

Officially Unsupported Branching Models

Trunk Based Development: Branch for release

https://trunkbaseddevelopment.com/branch-for-release/

exception:

git-flow

Even if this is strategy that you find useful for the applications you are building, which the original author of the git-flow branching model recommends against, we do not recommend this branching model when releasing artifacts with semantic-release. While the same reflection that recommends against using git-flow for web apps suggests that it may still be a good fit for explicitly versioned software, semantic-release is built with Continuous Deployment/Release in mind instead.

While some have found that the Pre-release workflow enabled by semantic-release can be used to simulate a git-flow-like workflow, it is also worth noting that workflow is not intended for such a use case and requests for support when attempting to use it that way will be closed by our team.

Workflows that Release for Testing Before Promotion to a Stable Release

Monorepos

While not specifically a branching strategy,