Files
NexStudio/.cursor/rules/git-workflow.mdc
Javaxman c94b405251 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
2026-04-23 15:07:09 +02:00

15 lines
561 B
Plaintext

---
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.