Browse Source

chore: add CONTRIBUTING.md Gitflow branching strategy

pull/6721/head
kalvinparker 2 months ago
parent
commit
b311088aa7
  1. 16
      CONTRIBUTING.md

16
CONTRIBUTING.md

@ -0,0 +1,16 @@
## Secure Development Governance — Branching Strategy
The following defines our mandated Gitflow branching strategy for secure development governance. This file documents expectations for feature development, hotfixes, and releases.
```markdown
## Branching Strategy: Gitflow Workflow
We use the Gitflow model to manage our development lifecycle. All feature development must be done against the 'develop' branch.
**Feature Branches:** Branch from `develop`. Merge back to `develop` via Pull Request.
**Hotfixes:** Branch from `main`. Merge to `main`, then merge immediately to `develop`.
No direct pushes to 'main' or 'develop' are allowed.
```
Please follow these rules when contributing. If you need an exception (emergency hotfix with org approval), open an issue describing the reason and obtain an explicit approval before bypassing the rules.
Loading…
Cancel
Save