Aggiorna la card di manutenzione con accento ocra visibile

Applica evidenza su bordo e parole chiave della card Aggiornamento e manutenzione evolutiva e versiona la regola Cursor per il workflow Git su branch dedicati.

Made-with: Cursor
This commit is contained in:
Javaxman
2026-04-23 15:07:09 +02:00
parent 253deef47e
commit c94b405251
2 changed files with 44 additions and 2 deletions

View File

@ -0,0 +1,14 @@
---
description: Git workflow standard for significant changes
alwaysApply: true
---
# Git Workflow Standard
Use a dedicated branch for every non-secondary change.
- Create a branch before editing code (`feat/*`, `fix/*`, `refactor/*`, `docs/*`, `chore/*`).
- Keep `main` as stable integration branch and avoid direct significant changes on it.
- Use focused commits with clear messages that explain intent.
- Merge to `main` only after validation and review.
- Keep tiny secondary edits (typos/comments/minor spacing) lightweight when explicitly requested.