16 lines
417 B
Markdown
16 lines
417 B
Markdown
|
|
# Branching-Strategie
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
main
|
|||
|
|
└── develop
|
|||
|
|
├── feature/<name>
|
|||
|
|
├── fix/<name>
|
|||
|
|
└── chore/<name>
|
|||
|
|
```
|
|||
|
|
|
|||
|
|
- `main` – stabiler Produktionsstand, nur Merges aus `develop`
|
|||
|
|
- `develop` – Integrationsstand, Basis für alle Feature-Branches
|
|||
|
|
- `feature/*` – neue Features, Basis: `develop`
|
|||
|
|
- `fix/*` – Bugfixes, Basis: `develop`
|
|||
|
|
- `chore/*` – Wartung, Konfiguration, Basis: `develop`
|