sync: 2026-06-26 22:13

This commit is contained in:
marcus.hinz
2026-06-26 22:13:47 +02:00
parent fef1d3451d
commit 425a7a3ed8
2 changed files with 15 additions and 0 deletions
+1
View File
@@ -6,3 +6,4 @@
- [adesso-cpq MR-Ziel](cpq-branching-mr-ziel.md) — MRs künftig auf development/Integration statt main; Branch bald einrichten - [adesso-cpq MR-Ziel](cpq-branching-mr-ziel.md) — MRs künftig auf development/Integration statt main; Branch bald einrichten
- [Kein nextTick](feedback-kein-nexttick.md) — Vue nextTick hartes Verbot; Timing reaktiv über watch/v-if lösen - [Kein nextTick](feedback-kein-nexttick.md) — Vue nextTick hartes Verbot; Timing reaktiv über watch/v-if lösen
- [cpq Storybook starten](cpq-storybook-start.md) — pnpm --filter @ad-cpq/common-frontend storybook (Port 6006) - [cpq Storybook starten](cpq-storybook-start.md) — pnpm --filter @ad-cpq/common-frontend storybook (Port 6006)
- [Git nur Fast-Forward](feedback-git-nur-fast-forward.md) — kein rebase/merge/force; bei Divergenz melden statt auflösen
@@ -0,0 +1,14 @@
---
name: feedback-git-nur-fast-forward
description: Git-Sync nur Fast-Forward; bei Divergenz melden statt rebase/merge
metadata:
node_type: memory
type: feedback
originSessionId: 277ae1d7-4a4d-4f24-ae53-60e743d26171
---
Beim Committen/Pushen: **nur Fast-Forward**. Kein `pull --rebase`, kein Merge, kein Force.
**Why:** Rebase/Merge verändert Historie bzw. löst Divergenzen automatisch auf — das will der User nicht ungefragt.
**How to apply:** Ablauf = `git add``git commit``git push`. Schlägt der Push fehl, weil er nicht fast-forward ist (Remote divergiert), **melden** und stoppen, nicht selbst auflösen. Verwandt: [[feedback-keine-intent-unterstellung]].