fix: make explicit that feature branches must be created from main
This commit is contained in:
@@ -9,8 +9,8 @@ Rolle: Zweite Phase der Gitea Issue Pipeline. Setzt die Spezifikation in Code um
|
||||
|
||||
## Eingang
|
||||
- Spezifikationsdokument: `memory/gitea-specs/issue-<number>.md`
|
||||
- Feature Branch: `feature/issue-<number>-<short-description>`
|
||||
- Repo geklont in `/tmp/<repo>` oder Arbeitsverzeichnis
|
||||
- Issue hat Label `KI` + `ReadyForDev`
|
||||
|
||||
## Aufgaben
|
||||
|
||||
@@ -30,6 +30,15 @@ Rolle: Zweite Phase der Gitea Issue Pipeline. Setzt die Spezifikation in Code um
|
||||
- Funktionen kurz und fokussiert
|
||||
- Kommentare für *warum*, nicht *was*
|
||||
|
||||
### Feature Branch erstellen
|
||||
- **Immer** vom aktuellen `main` Branch starten:
|
||||
```bash
|
||||
git checkout main && git pull
|
||||
git checkout -b feature/issue-<number>-<short-description>
|
||||
```
|
||||
- Branch-Naming: `feature/issue-<number>-<short-description>`
|
||||
- Repo klonen falls nötig: `git clone https://git.home.kies-media.de/<owner>/<repo>.git /tmp/<repo>`
|
||||
|
||||
### Bestehenden Code erweitern
|
||||
- Bestehende Patterns und Konventionen beachten
|
||||
- Keine unnötigen Refactorings im gleichen PR
|
||||
|
||||
Reference in New Issue
Block a user